首页 > 代码库 > iOS中Tableview右边有字母检索 点击可以直接定位显示的问题
iOS中Tableview右边有字母检索 点击可以直接定位显示的问题
在做项目的过程中,我遇到这样一个问题,就是本身的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右边有字母检索 点击可以直接定位显示的问题
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。