UITableView 局部刷新
//局部section刷新NSIndexSet * nd=[[NSIndexSet alloc]initWithIndex:1];//刷新第二个section[tview reloadSections:nd withRowAnimation:UITableViewRowAnimationAutomatic];//局部cell刷新 www.zzzyk.comNSIndexPath *te=[NSIndexPath indexPathForRow:2 inSection:0];//刷新第一个section的第二行[tableView reloadRowsAtIndexPaths:[NSArray arrayWithObjects:te,nil] withRowAnimation:UITableViewRowAnimationMiddle];
补充:移动开发 , IOS ,