我提出了一个新的观点:
- (IBAction)selectName:(id)sender {
SelectNameViewController *nameController = [[SelectNameViewController alloc]
initWithNibName:@"SelectNameView"
bundle:nil];
[self.navigationController pushViewController:nameController animated:YES];
[nameController release];
}
但是在新视图的导航栏中,没有返回按钮。
为什么这个?我知道我可以创建一个自定义后退按钮,但我想要默认的,我该如何解决?
谢谢