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

iOS中Tableview右边有字母检索 点击可以直接定位显示的问题

时间:2014-11-25 14:27:01      阅读:237      评论:0      收藏:0      [点我收藏+]

标签:ios sdk tableview   sectionindextitlesfo   

在做项目的过程中,我遇到这样一个问题,就是本身的tableview 调用

- (NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView

方法的时候,最后几个位置点击后不能准确定位,比如说“#” 不管我如何点击“#”都无法把其对应的列表项显示出来,所以我自己在

- (NSInteger) tableView:(UITableView *)tableView sectionForSectionIndexTitle:(NSString *)title atIndex:(NSInteger)index

方法中重写了一些方法 代码如下

- (NSInteger) tableView:(UITableView *)tableView sectionForSectionIndexTitle:(NSString *)title atIndex:(NSInteger)index
{<span style="white-space:pre">	</span>
    //1.获取当前index的section的original的y
    //2.用tableview.contentsize.height减去y,得到lefty
    //3.如果lefty>=tableview.frame.size.height 滚动lefty个单位
    //4.如果lefty<tableview.frame.size.height 滚动tableview.contentsize.height-tableview.frame.size.height
    float y = [self getYOffSet:index title:title];
    if (tableView.contentSize.height-y>=tableView.frame.size.height) {
         [tableView setContentOffset:CGPointMake(0, y) animated:NO];
    }else{
         [tableView setContentOffset:CGPointMake(0, tableView.contentSize.height-tableView.frame.size.height) animated:NO];
    }
    return NSNotFound;
}

-(float)getYOffSet:(NSInteger)index title:(NSString *)title{
//这里的offy = 100 是我在这个tableview最上面加了两个section 不在这个计算之内 显示了别的东西 对于不需要添加特别提示等//显示,可以设置为0
    float offY = 100;
    int count = 0;
//对应的所有内容的高度
    float addOffy = 0;
//对应标题下内容不为空 例:以a开头的内容有aaa,abc,abcd 则a标题下不为空,addTitleCount加1 计数用 通过这个计算一共有
//多少项内不为空 总共占用多少header高度 最后一句中得22是我定义的一个viewforHeader的高度 
    float addTitleCount = 0;
//sectionTitles 是从a-z加上#之后的列表
//datasource 是对应我的没个section中有几项内容的数据
    for (NSString * string in self.sectionTitles) {
        if ([string isEqualToString:title]) {
            break;
        }
        addOffy+=50*[[self.dataSource objectAtIndex:count] count];
        if ([[self.dataSource objectAtIndex:count] count]!=0) {
            addTitleCount++;
        }
        count++;
       
    }
    
    return offY+22*(addTitleCount)+addOffy;
}


iOS中Tableview右边有字母检索 点击可以直接定位显示的问题

标签:ios sdk tableview   sectionindextitlesfo   

原文地址:http://blog.csdn.net/zhanglei1239/article/details/41480645

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