3

目前,我的 iOS (6) 应用程序使用 Master-Detail 视图模板,并预先填充了一些列表元素。用户当前可以选择“编辑”并添加到(“+”)列表。有没有办法删除这些按钮,以防止更改原始列表?

4

1 回答 1

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;
}
于 2012-12-12T15:39:34.540 回答