Rya*_*los 11
是的,有一个简单的方法.
查找这个代码MasterViewController.m,并删除这些行self.navigationItem.leftBarButtonItem = self.editButtonItem;,self.navigationItem.rightBarButtonItem = addButton;
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
self.navigationItem.leftBarButtonItem = self.editButtonItem;
UIBarButtonItem *addButton = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemAdd target:self action:@selector(insertNewObject:)];
self.navigationItem.rightBarButtonItem = addButton;
}
Run Code Online (Sandbox Code Playgroud)