自从我开始使用iOS 6以来,我似乎遇到了一个问题,在使用iOS 5时没有出现。起初我以为这可能只是一个模拟器错误,但自从我今天在我的iPhone 5上测试它后,我可以看到这不仅仅是在模拟器中。
我正在以编程方式创建所有内容——我似乎更喜欢这样做(我认为这是因为我的 HTML/CSS 背景!)——但我对 Objective-C 还是相当陌生,我找不到完整的例子关于如何以编程方式设置导航控制器/表格视图,所以我从我能找到的大量信息中将它们放在一起,因此,我可能会做一些根本错误的事情。但是,它在 iOS 5 上运行良好(并且仍然运行良好)。
问题是我在导航栏和表格视图之间有一个黑条,但奇怪的是,如果我推送一个视图并返回到原来的视图,该条就会消失,直到我完全重新启动后才会重新出现应用程序。
下图是启动时的应用程序 (1),当我在 (2) 中推送一个视图时,以及在我返回它 (3) 后的初始视图:
这就是我的代码:
AppDelegate.m
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
RootViewController *rootController = [[RootViewController alloc] init];
self.window.rootViewController = rootController;
self.navigationController = [[UINavigationController alloc] initWithRootViewController:rootController];
[self.window addSubview:navigationController.view];
[self.window makeKeyAndVisible];
NSLog(@"Window frame: %@", NSStringFromCGRect(self.window.frame));
return YES;
}
根视图控制器.m
- (void)loadView
{
self.title = @"Title";
self.tableView = [[UITableView alloc] initWithFrame:[[UIScreen mainScreen] bounds] style:UITableViewStylePlain];
self.tableView.delegate = self;
self.tableView.dataSource = self;
self.view = self.tableView;
NSLog(@"tableView frame: %@", NSStringFromCGRect(self.tableView.frame));
UIBarButtonItem *newViewButton = [[UIBarButtonItem alloc] initWithTitle:@"New View"
style:UIBarButtonItemStylePlain
target:self
action:@selector(newViewButtonTapped:)];
[self.navigationItem setRightBarButtonItem:newViewButton animated:NO];
}
我添加了 NSLogs 以查看它们是否显示了任何可能对我有帮助的内容。输出是:
tableView frame: {{0, 0}, {320, 480}}
Window frame: {{0, 0}, {320, 480}}
谁能给我任何关于我做错了什么的想法?似乎有类似/相同的问题(黑色栏上方的导航栏-在评论中),但我还没有找到答案。
提前致谢!