我正在使用 iOS 6.1 SDK 编译我的应用程序并部署在 iOS7 设备中。该应用程序的设备设置为仅适用于 iPhone。
我有一个添加到导航控制器的视图控制器。
self.window.rootViewController = [[UINavigationController alloc]
initWithRootViewController:
[[MyViewController alloc] init]];
当我在运行 iOS 7 的 iPad Mini 中部署应用程序时,顶部显示了一个奇怪的间隙。
如果我将应用程序的设备设置为通用,那么差距就会消失。对此有什么解释吗?谢谢。