TableView  — reloadData     刷新

//指定刷新某一行
    NSIndexPath *indexPath=[NSIndexPath indexPathForRow:0 inSection:1];
    [_readTableView reloadRowsAtIndexPaths:[NSArray arrayWithObjects:indexPath, nil] withRowAnimation:UITableViewRowAnimationNone];
 
 
 
//指定刷新某一段
NSIndexSet *indexSet=[[NSIndexSet alloc]initWithIndex:2];
   
    [_readTableView reloadSections:indexSet withRowAnimation:UITableViewRowAnimationAutomatic];
posted @ 2015-11-06 08:29  望月Jarvis  阅读(282)  评论(0编辑  收藏  举报