2012-02-08 10 views

答えて

1
[listTableView beginUpdates]; 
[listTableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:[NSIndexPath indexPathForRow:rowNumber inSection:0]] 
        withRowAnimation:UITableViewRowAnimationLeft]; // there are a few other animations, check out the enum 
// Remove the cell's contents from your data source, for example: 
// [contentsArray removeObjectAtIndex:rowNumber]; 
[listTableView endUpdates]; 
を助けることができます
+0

私のために働いてくれてありがとう – dev

関連する問題