У меня есть UINavigationController
с UITableViewController
и двумя UIBarButtonItem
с:
- (void)viewDidLoad {
[super viewDidLoad];
self.navigationItem.leftBarButtonItem = self.editButtonItem;
self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemAdd target:self action:@selector(showSubscribeSheet:)];
self.navigationController.navigationBar.tintColor = [UIColor brownColor];
}
Я хочу скрыть self.navigationItem.rightBarButtonItem
, когда UITableView
находится в режиме редактирования. Как я могу это сделать? Спасибо.
Я не использую перья.