我想在" navBar"中添加UIBarButton
viewController
这是我的代码:
UIBarButtonItem *item = [[UIBarButtonItem alloc] initWithTitle:@"+ Contact"
style:UIBarButtonItemStylePlain
target:self
action:@selector(showPicker:)];
[self.navigationItem setLeftBarButtonItem:item animated:YES];
" navBar"没有任何内容。我也尝试通过故事板添加它,但我无法将其作为viewController
连接到IBAction
的界面。
无法弄清楚。