//联系人:石虎
QQ: 1224614774昵称:嗡嘛呢叭咪哄
一、UITableView常用成员方法
//通过indexpath获取指定行的uitableviewcell
[_table cellForRowAtIndexPath:indexPath];
[_table deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationFade];
[_table deleteSections:[NSIndexSet indexSetWithIndex:1] withRowAnimation:UITableViewRowAnimationMiddle];
[_table deselectRowAtIndexPath:indexPath animated:YES];
[_table headerViewForSection:indexPath.row];
[_table footerViewForSection:indexPath.row];
[_table indexPathForCell:cell];
[_table indexPathForRowAtPoint:CGPointMake(0, 0)];
[_table indexPathForSelectedRow];
[_table indexPathsForRowsInRect:CGRectMake(0, 0, 100, 100)];
[_table indexPathsForVisibleRows];
[_table insertRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationLeft];
[_table insertSections:[NSIndexSet indexSetWithIndex:0] withRowAnimation:UITableViewRowAnimationRight];
[_table rectForRowAtIndexPath:indexPath];
[_table reloadData];
[_table reloadRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationTop];
[_table reloadSectionIndexTitles];
[_table reloadSections:[NSIndexSet indexSetWithIndex:0] withRowAnimation:UITableViewRowAnimationFade];
[_table scrollsToTop];
[_table scrollRectToVisible:CGRectMake(0, 0, 100, 100) animated:YES];
[_table scrollToNearestSelectedRowAtScrollPosition:UITableViewScrollPositionBottom animated:YES];
[_table scrollToRowAtIndexPath:indexPath atScrollPosition:UITableViewScrollPositionBottom animated:YES];
[_table visibleCells];
[_table beginUpdates];
[_table endUpdates];
谢谢!!!