我有UINavigationBar
的子類。如何使用自定義UINavigationBar
@interface MyNavigationBar : UINavigationBar
做了一些改動,現在想的是我的應用程序NavigationController
會使用它:
_navigationController = [[UINavigationController alloc] initWithRootViewController:self.viewController];
[_window addSubview:[_navigationController view]];
[self.window makeKeyAndVisible];
我想那_ navigationController將有MyNavigationBar
怎麼可以這樣做?
謝謝。
你能告訴我它在AppDelegate中的外觀嗎? – Streetboy 2012-04-04 09:12:24
工作。但是這不起作用[self.navigationController pushViewController:sendMsg animated:YES]; – Streetboy 2012-04-04 09:44:14
你是從哪個班打來的?檢查'NSLog(@「%@」,self.navigationController);'是否爲空 – 2012-04-04 09:50:27