我是使用Three20的新手,当我使用导航器时,xcode总是报错:应用程序窗口应该在应用程序启动结束时有一个根视图控制器
这是我的代码:
TTNavigator *navigator = [TTNavigator navigator];
navigator.persistenceMode = TTNavigatorPersistenceModeAll;
navigator.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
TTURLMap *map = navigator.URLMap;
[map from:@"tt//view" toViewController:[ViewController class]];
[map from:@"tt//test" toSharedViewController:[TestViewController class]];
if (![navigator restoreViewControllers]) {
[navigator openURLAction:[TTURLAction actionWithURLPath:@"tt://view"] ];
}
return YES;
我不明白为什么会这样?谁能帮我吗?