我要疯了才能解决这个问题。
我在我的AppDelegate.m
Basic a navigation controller + tab bar 中有以下代码,链接到 2 tableviewcontroller
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
self.window = [[[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]] autorelease];
ElencoSpese *elenco=[[ElencoSpese alloc] init];
elenco.tabBarItem.title=@"Prova 123";
ElencoSpese *elenco2=[[ElencoSpese alloc] init];
elenco2.tabBarItem.title=@"Prova 222";
UITabBarController *tabMenu = [[UITabBarController alloc] init];
tabMenu.viewControllers=[NSArray arrayWithObjects:elenco, elenco2, nil];
UINavigationController *navig=[[UINavigationController alloc] initWithRootViewController:tabMenu];
self.window.rootViewController=navig;
[self.window makeKeyAndVisible];
return YES;
}
ElencoSpese
是一个TableViewController
,它工作正常。我想在"title"
此窗口中添加“+”和"Edit"
...顶部的按钮NavigationBar
。
我试图在 tableviewcontroller 的 loadview 方法中取消注释以下内容:没有结果
// Uncomment the following line to display an Edit button in the navigation bar for this view controller.
self.navigationItem.rightBarButtonItem = self.editButtonItem;
我也尝试在 appdelegate 中设置标题....什么都没有...