私はこの問題を解決するために夢中になっています。
AppDelegate.m
基本的に、2つのテーブルビューコントローラーにリンクするナビゲーションコントローラー+タブバーに次のコードがあります
- (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でタイトルを設定しようとしました....何も...