-1
任何人都可以解釋我一步一步的過程轉換基於視圖的應用程序導航爲基礎的應用程序嗎?這是在IB和我的appdelegate採取的步驟來實現這一目標?如何將我的基於視圖的應用程序轉換爲基於導航的應用程序?
任何人都可以解釋我一步一步的過程轉換基於視圖的應用程序導航爲基礎的應用程序嗎?這是在IB和我的appdelegate採取的步驟來實現這一目標?如何將我的基於視圖的應用程序轉換爲基於導航的應用程序?
在你的應用程序代理,你可以把你的代碼是這樣的:
self.viewController = [[[ViewController alloc] initWithNibName:@"ViewController" bundle:nil] autorelease];
UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:self.viewController];
[self.window addSubview:navigationController.view];
在界面添加UInavigation控制器對象file.and然後在didfinishlaunch
self.navigationController = [[UINavigationController alloc] initWithRootViewController:viewController];
[self.navigationController setNavigationBarHidden:NO];
//self.navigationController.navigationBar.barStyle = UIBarStyleBlackTranslucent;
//self.navigationController.navigationBar.translucent = YES;
// Override point for customization after app launch
[window addSubview:self.navigationController.view];
[window makeKeyAndVisible];
返回的代碼添加YES ;
並且不要忘記將代理連接到IB中的文件所有者。