答案 0 :(得分:2)
你可以使用self.editButtonItem; only:如果您的类是UITableViewController子类的子类。
如果是UIViewController子类,则self.editBarButtonItem不起作用。
在这种情况下,您可以使用
self.navigationItem.rightBarButtonItem = [[[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemEdit target:self action:@selector(edit :)] autorelease];
和编辑方法集编辑
- (无效)编辑:(ID)发送方 { myTable.editing = YES; }