我从朋友那里得到了一个项目,这是关于cam的。在iPhone 6中打开视图时,触摸主页按钮,返回应用程序,应用程序不再全屏。我不知道为什么? iPhone5运行良好。 请帮我!非常感谢。
答案 0 :(得分:0)
这不是问题,您没有设置与屏幕的兼容性。因为i-phone 6的屏幕尺寸(375 * 667)比i-phone 5屏幕尺寸(320 * 567)大。因此,您必须应用兼容性检查。
CGRect screenSize;
screenSize = [[UIScreen mainScreen]bounds];
NSLog(@"%f",screenSize.size.height);
float height = screenSize.size.height;
if (height == 667)//this is i-phone 6 height
{
//change your view frame here, set according to i-phone 6 screen bounds
}