我是 ios 应用程序开发的新手。现在我的应用提交遇到了问题。我必须支持 iPhone 5 上的 4 英寸显示屏,因为我的应用程序基于 iPhone 4。我知道我可以重新设计我的视图框架以匹配 4 英寸或将 1.187 之类的数字乘以 frame.origin.y支持4寸。但是我怎么能以第二种方式做到这一点。我的代码是这样的
if([[UIScreen mainScreen] bounds].size.height == 568){ //to judge if it is 4-inch screen
self.viewController = [[[IPGWViewController alloc] initWithNibName:@"myapp" bundle:nil] autorelease]; //how can I do this here to multiply the number 1.187 to the frame.origin.y
}
else{
self.viewController = [[[IPGWViewController alloc] initWithNibName:@"myapp" bundle:nil] autorelease];
}
非常感谢!