문제

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

도움이 되었습니까?

해결책

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.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top