Frage

if I have this line of code in my app will IOS do an automatic translation to retina?

so:

self.cellView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 1024, 768)];

would automatically become on iPad3:

self.cellView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 2048, 1536)];

Thanks

War es hilfreich?

Lösung

No. This would create one view the size of the screen, and the other twice the size. Core Graphics handles measurements in points, not pixels.

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top