标签: ios
我在后期发现我需要在UITableController视图的顶部添加一个“编辑按钮”。 什么是最好的方法。如果可能的话,我不想对我的应用程序做很多更改,因为它几乎完成了。
答案 0 :(得分:1)
您可以将UIBarButtonItem添加到导航栏,并在操作中调用表视图的编辑模式。
- (IBAction) edit:(id)sender { [self.tableView setEditing:YES animated:YES]; }