我有一个带有两个视图的导航控制器。第一个视图是一个带有 TableView 的 ViewController,第二个视图是带有一些 UILabel 和一个 UIWebView 的 UIView。当从 TableView 中选择一个单元格时,导航控制器会推送到第二个视图。
我已经向导航控制器和一些按钮添加了 UIToolBar。
我的问题是当导航控制器推送到第二个视图(UIView)时,我的 UIToolBar 出现但没有按钮。
我想显示不同的按钮或从第二个视图中删除 UIToolBar。我想我需要在 AppDelegate 中做一些事情,我只是不确定是什么以及如何做。
这是我的 XIBS 的外观:
MainWindow
- App Delegate
- Window
- Navigation Controller
-- Navigation Bar
-- ToolBar
-- View Controller
--- Bar Button Item
--- Navigation Item
---- Bar Back Item
ViewController
-TableView
DetailView
-View
--Web View
--Label
--Label
代码:
AppDelgate.h
@interface AppDelegate : UIResponder <UIApplicationDelegate>
{
UIWindow *window;
UINavigationController *navigationController;
UIToolbar *toolBar;
}
@property (nonatomic, strong) IBOutlet UIWindow *window;
@property (nonatomic, strong) IBOutlet UINavigationController *navigationController;
@property (nonatomic, strong) IBOutlet UIToolbar *toolBar;
@end
AppDelegate.m
@implementation AppDelegate
@synthesize window;
@synthesize navigationController;
@synthesize toolBar;
- (void)applicationDidFinishLaunching:(UIApplication *)application {
// Override point for customization after app launch
[window addSubview:[navigationController view]];
[window makeKeyAndVisible];
}
- (void)applicationWillTerminate:(UIApplication *)application {
// Save data if appropriate
}
@end
任何帮助,将不胜感激。谢谢