2011-11-05 48 views
2

我有一個UITableViewCell的子類,在其中我有方法willTransitionToState和didTransitionToState,但是當我嘗試在單元格上滑動時它沒有被調用。爲什麼是這樣?willTransitionToState和didTransitionToState沒有被調用

+0

當您將整個表格視圖置於編輯模式時,它會被調用嗎? – jrturton

+0

是的,當我在cellForRowAtIndexPath中手動設置cell.editing爲YES時,它會調用 – xonegirlz

回答

1

你的表視圖的數據源必須實現

- (void)tableView:(UITableView *)tableView commitEditingStyle (UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath 

對於滑動到刪除工作。可以?

相關問題