2009-11-18 126 views
2

我有一個UITABLEVIEW,我想只顯示某些單元格的刪除功能(也就是說,某些單元格是用戶可刪除某些單元格不是)。據我所知,seteditable:只能在表級別設置。有沒有辦法來覆蓋這個或隱藏某些單元格上的刪除按鈕?在選定的UITABLEVIEW單元上隱藏/禁用編輯按鈕?

回答

7

你應該在的tableview委託實施

- (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath 

。您可以返回適合您的單元格的編輯樣式:UITableViewCellEditingStyleDelete for deletable cells,UITableViewCellEditingStyleNone for others

相關問題