我有以下的应用程序,其RootViewController
名为TopicsViewController
。
当我运行它,没有任何错误或中断,但屏幕是黑的 。 没有表,填充或空的,只是一个黑色的屏幕。 不知道这下面就是发生的事情:
- 是不是有什么毛病我的应用程序
didFinishLaunchingWithOptions
到解析器它initlizing方法有关? - 有什么事情跟我的笔尖文件
TopicsViewController
?
我可以从我表现出更多的代码TopicsViewController
如果需要的类。
- (BOOL)application:(UIApplication *)application
didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
///////////////////////////////////////////
***initializing code for parser which populates TopicsViewController (not shown to save space)*****
///////////////////////////////////////////
UIViewController *rootController =
[[TopicsViewController alloc]
initWithNibName:@"TopicsViewController" bundle:nil];
navController = [[UINavigationController alloc]
initWithRootViewController:rootController];
self.window = [[UIWindow alloc]
initWithFrame:[[UIScreen mainScreen] bounds]];
[self.window addSubview:navController.view];
[self.window makeKeyAndVisible];
return YES;
}