首页 > 代码库 > iOS UITableView 快速滚动(索引方式实现)
iOS UITableView 快速滚动(索引方式实现)
参考:http://my.oschina.net/joanfen/blog/204503
思路:UITableView一次性加载数据过多时,需要滑动多次触底。想通过索引实现快速滑动,索引中加载20个空点。用户在最右端滑动时,索引框显示,当触及索引点时指向其想对应的UITableView的RowIndex来实现快速滚动。这方法有缺陷:普通滑动时滚动条被遮盖了。
主要代码:
//获取数据 -(void)getTableData{ dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{ dispatch_async(dispatch_get_main_queue(), ^{ // 获取数据库数据 self.listArray = [[ReportLogic sharedInstance] getProductByCategory]; if ([self.listArray count] == 0) { [GlobalApplication Alert:@"提示" :@"暂无数据"]; }else{ // 索引目录,20个空点 NSMutableArray *stArray = [[NSMutableArray alloc] init]; self.sectionTitles = stArray; [stArray release]; for (int i=0;i<20;i++) { NSString *index = @""; [self.sectionTitles insertObject:index atIndex:i]; } } // 数据刷新 [self.fmTableView reloadData]; }); }); } #pragma mark index // 分区数 -(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{ return 1; } // 索引目录 -(NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView{ return self.sectionTitles; } // 滑动时点击目录 -(NSInteger)tableView:(UITableView *)tableView sectionForSectionIndexTitle:(NSString *)title atIndex:(NSInteger)index{ // 修正索引焦点为UITableView的RowIndex,头尾和中间值 if (index == 0) { index = 1; }else if(index == self.sectionTitles.count - 1){ index = self.listArray.count -1; }else index = round(index*self.listArray.count/20); [self.fmTableView scrollToRowAtIndexPath:[NSIndexPath indexPathForRow:index inSection:0] atScrollPosition:UITableViewScrollPositionBottom animated:YES]; return index; }
效果:
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。