2
A
回答
7
實施editingStyleForRowAtIndexPath和該行返回UITableViewCellEditingStyleNone:
- (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath
{
if (indexPath.section == sss && indexPath.row == rrr)
return UITableViewCellEditingStyleNone;
else
return UITableViewCellEditingStyleDelete;
}
2
接受的響應作品,但不這樣做的正確方法。有兩種方法:editingStyleForRowAtIndexPath
和canEditRowAtIndexPath
editingStyleForRowAtIndexPath:使用時,有在表
canEditRowAtIndexPath多種不同的編輯風格:使用時,一些行應該編輯和一些不應該。
因此實現你的表委託正確的做法是:
- (BOOL)tableView:(UITableView *)tableView
canEditRowAtIndexPath:(NSIndexPath *)indexPath {
if (indexPath.section == sss && indexPath.row == rrr)
{
return NO;
}
return YES;
}
相關問題
- 1. 防止刪除
- 2. 防止刪除UIViewController
- 3. 防止UITableViewCell左移,刪除按鈕出現在編輯表
- 4. 防止UITableViewCell子類允許刷卡刪除?
- 5. 防止MVCBuildViews刪除MSdeploy包
- 6. 防止刪除實體
- 7. 防止刪除DataGrid行
- 8. 如何防止刪除NULLS?
- 9. 防止unlist刪除空值
- 10. 防止刪除數據
- 11. 防止意外刪除
- 12. 防止刪除列在MySQL
- 13. 防止文件刪除
- 14. 防止方向刪除
- 15. 防止刪除雙引號
- 16. 防止ID 1被刪除
- 17. NHibernate防止級聯刪除
- 18. MySQL:如何防止刪除?
- 19. 防止eclipse刪除空白
- 20. 防止從viewForHeaderInSection滾動UITableViewCell
- 21. 防止UITableView重用UITableViewCell?
- 22. 導軌防止刪除孩子,除非父母也被刪除
- 23. NSException當刪除UITableViewCell
- 24. 刪除UITableViewCell定製
- 25. 從UITableView刪除UITableViewCell
- 26. 刪除圓角UITableViewCell
- 27. IValueConverter塊可以防止刪除
- 28. 防止tomcat重用已刪除的類
- 29. 刪除iframe並防止與庫衝突
- 30. 防止刪除核心數據NSManagedObject
這就是我認爲這將是......非常感謝您的回答! – Pripyat 2010-05-10 21:14:12