2012-06-14 52 views

回答

0

這是怎麼回事?這是你想要收集的嗎?我不確定。

[yourTableView beginUpdates]; 
[yourTableView moveRowAtIndex:firstStateIndex toIndex:endStateIndex]; 
[yourTableView endUpdates]; 

當然,您必須首先插入特定的行,以便您可以隨後移動它。動畫可以像這樣發生。

0
[tblMainView beginUpdates]; 
[tblMainView reloadRowsAtIndexPaths:<#(NSArray *)#> withRowAnimation:UITableViewRowAnimationLeft]; 
[tblMainView endUpdates]; 
+0

reloadRowsAtIndexPaths之後的那一點是什麼:應該說? – paulmelnikow

2

你可以用下面的方法:

NSIndexPath *indexPath = [NSIndexPath indexPathForRow:0 inSection:0]; 

[self.tableView insertRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationAutomatic]; 

的代碼進行測試,肯定會爲你工作......從頂部一路