你好我完全新iPhone的SDK。 我試圖建立一個應用程序,顯示一個歡迎屏幕3秒鐘,然後它切換到主應用程序屏幕,其中有一個標籤欄視圖。 我的歡迎屏幕在單獨測試時工作正常。但是在main.xib中配置UITabBarController之後,不顯示歡迎屏幕。雖然標籤欄工作正常。關於UITabBar控制器的問題
歡迎屏幕控制器我已經命名爲rootController。 在AppDeligate我有下面的代碼 -
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
// Override point for customization after application launch.
RootController* rootController = [[RootController alloc] init];
// [self.window insertSubview:rootController.view atIndex:4];
[self.window addSubview:rootController.view];
[self.window makeKeyAndVisible];
return YES;
}
歡迎屏幕上顯示我會刪除其觀點後,我希望由標籤欄的主視圖中顯示。可能的錯誤是什麼?
sry其MainWindow.xib不main.xib – abhihello123 2011-02-14 15:50:09