Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
无论如何禁用'UITable'视图上的幻灯片删除功能?我有一个显示数据库内容的表,但我不希望用户能够删除该行。
只需在您的ViewController(或您的其他TableView's数据源)中实现此方法
ViewController
TableView's
- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath { return NO; }