设置一组一共显示几行
numberOfRowsInSection:(NSInteger)section
设置行高
设置每行如何显示
(UITableViewCell *)tableView:(UITableView *)tableView
cellForRowAtIndexPath:(NSIndexPath *)indexPath
设置点击事件
didSelectRowAtIndexPath:(NSIndexPath *)indexPath
刷新整个tableView
[tableView reloadData]
局部刷新
[tableView reloadRowsAtIndexPaths]
滚动到某个位置
[tableView scrolToRowAtIndexPath]