私はこれで新しいビュー押す:NavigationBarで欠落している「バックボタン」
- (IBAction)selectName:(id)sender {
SelectNameViewController *nameController = [[SelectNameViewController alloc]
initWithNibName:@"SelectNameView"
bundle:nil];
[self.navigationController pushViewController:nameController animated:YES];
[nameController release];
}
をしかし、新しいビューのnavigationbarに、バックボタンがありません。
これはなぜですか?私はカスタムの戻るボタンを作成することができますが、私はデフォルトをしたい、どのように私はそれを修正することができますか?
ありがとうございました