码迷,mamicode.com
首页 > 移动开发 > 详细

iOS UITableView 快速滚动(索引方式实现)

时间:2014-08-11 17:55:52      阅读:250      评论:0      收藏:0      [点我收藏+]

标签: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;
}
 

效果:

bubuko.com,布布扣

iOS UITableView 快速滚动(索引方式实现),布布扣,bubuko.com

iOS UITableView 快速滚动(索引方式实现)

标签:uitableview   快速滚动   索引   

原文地址:http://blog.csdn.net/fengshi_sh/article/details/38494469

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