アプリにこのコード行がある場合、IOS は Retina に自動変換しますか?
それで:
self.cellView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 1024, 768)];
iPad3 では自動的に次のようになります。
self.cellView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 2048, 1536)];
ありがとう
アプリにこのコード行がある場合、IOS は Retina に自動変換しますか?
それで:
self.cellView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 1024, 768)];
iPad3 では自動的に次のようになります。
self.cellView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 2048, 1536)];
ありがとう