2016-03-01 44 views

回答

4
NSIndexPath* rowToReload = [NSIndexPath indexPathForRow:2 inSection:0]; 
NSArray* rowsToReload = [NSArray arrayWithObjects:rowToReload, nil]; 
[yourTableView reloadRowsAtIndexPaths:rowsToReload withRowAnimation:UITableViewRowAnimationNone]; 

希望這將有助於你

0

使用[tableView reloadRowsAtIndexPaths: withRowAnimation:];

爲:

[tableView reloadRowsAtIndexPaths:arrayOfIndexPaths withRowAnimation:UITableViewRowAnimationFade]; 
相關問題