我有这个结构:
当我想从情节提要中添加“UINavigationItem”时,导航栏被“禁用”,所以我尝试以编程方式添加右键:
UIBarButtonItem *button = [[UIBarButtonItem alloc]
initWithBarButtonSystemItem:UIBarButtonSystemItemAdd
target:self
action:@selector(showPickerView:)];
self.navigationItem.rightBarButtonItem = button;
但什么也没有发生。我从情节提要重命名了导航栏标题,但是当我运行应用程序时,标题没有设置。我真的不知道问题的根源是什么。只是出现了后退按钮。谢谢您的帮助。