2010-11-23 77 views
2

如何編程刷新UITableCell的能力。我已經有了一個我一直在使用UITableCell的子類。我只是在處理它的滑動,就像我會看到的一樣?iPhone Dev:輕掃UITableCell

回答

1

您將需要實現這個方法:

tableView:editingStyleForRowAtIndexPath: 

,並返回UITableViewCellEditingStyleDelete

爲了使它工作,你還需要實現這些方法:

tableView:commitEditingStyle:forRowAtIndexPath: 
tableView:canEditRowAtIndexPath: 

要定製刪除按鈕的文字看到這個帖子: UITableView Swipe to delete: how to customize button and action?

+0

不錯。謝謝。 – Oscar 2010-11-23 18:49:47