私はこの問題を解決するために夢中になってきました。UINavigationControllerにタイトル+ボタンを追加
私は私のAppDelegate.m
に次のコードは、基本的には2 tableviewcontroller
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
self.window = [[[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]] autorelease];
ElencoSpese *elenco=[[ElencoSpese alloc] init];
[email protected]"Prova 123";
ElencoSpese *elenco2=[[ElencoSpese alloc] init];
[email protected]"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
できたし、それがうまく動作。私はtableviewcontrollerのloadViewメソッドで次のようにコメントを解除するために、このウィンドウに"title"
、私が試したNavigationBar
....
の最上部の「+」と"Edit"
ボタンを追加したい:なし結果を
// Uncomment the following line to display an Edit button in the navigation bar for this view controller.
self.navigationItem.rightBarButtonItem = self.editButtonItem;
私はalstoタイトル....何を設定するappdelegateで試してみた
...
まさかのように追加-viewDidLoad ....私が追加した(結果なしで...):自己を.window.rootViewController.tabBarController.navigationItem.title = @ "ciao";サブタイトル。おかげで彼は助ける –
よろしく!今それは動作します!ありがとう! –