标签:uitableview 左右两栏 关联 demo 滚动关联
//section的header的标题,随着UITableView的滚动,总会有一个驻留在UITableView的顶端。 - (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section{} //header消失时事件的监听,相应的还有其它几个代理方法, - (void)tableView:(UITableView *)tableView willDisplayHeaderView:(UIView *)view forSection:(NSInteger)section{} //控制UITableView的滚动,滚动到特定的区域 - (void)scrollToRowAtIndexPath:(NSIndexPath *)indexPath atScrollPosition:(UITableViewScrollPosition)scrollPosition animated:(BOOL)animated; //重新加载UITableView的特定Cell - (void)reloadRowsAtIndexPaths:(NSArray *)indexPaths withRowAnimation:(UITableViewRowAnimation)animation NS_AVAILABLE_IOS(3_0);
http://download.csdn.net/download/u011439689/8344571
利用UITableView实现左右两栏滚动的关联【附Demo】
标签:uitableview 左右两栏 关联 demo 滚动关联
原文地址:http://blog.csdn.net/u011439689/article/details/42554809