码迷,mamicode.com
首页 > 其他好文 > 详细

利用UITableView实现左右两栏滚动的关联【附Demo】

时间:2015-01-09 15:38:34      阅读:260      评论:0      收藏:0      [点我收藏+]

标签:uitableview   左右两栏   关联   demo   滚动关联   

实现功能

左栏为大项列表,右栏为没项目的子列表。实现了选择左栏,右栏滚动到对应列表;滚动右栏,左栏大项的选中状态对应改变。
代码见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);


运行效果图

技术分享


Demo下载地址

http://download.csdn.net/download/u011439689/8344571





利用UITableView实现左右两栏滚动的关联【附Demo】

标签:uitableview   左右两栏   关联   demo   滚动关联   

原文地址:http://blog.csdn.net/u011439689/article/details/42554809

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!