我的应用程序在 4 英寸屏幕(= iPhone 5)的顶部显示了一个白条。对于 iPhone 4,它运行良好(没有显示白条)。有什么问题(iOS SDK 6.1)?
这就是我添加 UINavigationController 的方式:
self.navigationController = [[UINavigationController alloc] initWithRootViewController:exploreViewController];
self.navigationController.navigationBar.tintColor = [UIColor greenColor];
self.navigationController.navigationItem.hidesBackButton = YES;
[self.view addSubview:self.navigationController.view];
最好的,斯特凡