タイトルとUINavigationControllerに問題があります。私はUIViewControllerCurrentで次のコードを使用しています.NextButtonのタイトルは、NextViewControllerから戻ってきてもまだ "Previous"です。誰か親切にこの問題を助けてくれますか?ありがとう。UINavigationControllerの "title"の問題
[self setTitle:@"Previous"];
NextViewController *controller = [[NextViewController alloc] init];
[[self navigationController] pushViewController:controller animated:YES];
[controller release], controller = nil;
- (void)viewWillAppear:(BOOL)animated; {
[self setTitle:@"Real Title"];
[super viewWillAppear:animated]; }
私はそれらをviewWillAppearの中に入れれば、それはシームレスに起こります。そうでなければ(シミュレータでは少なくとも)タイトルが変わっていることに気付きます。助けてくれてありがとう :) – Ahsan