在做項(xiàng)目的過(guò)程中湘今,我遇到這樣一個(gè)問(wèn)題旗们,就是本身的tableview 調(diào)用
- (NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView
方法的時(shí)候,最后幾個(gè)位置點(diǎn)擊后不能準(zhǔn)確定位半开,比如說(shuō)“#” 不管我如何點(diǎn)擊“#”都無(wú)法把其對(duì)應(yīng)的列表項(xiàng)顯示出來(lái)鬓长,所以我自己在
- (NSInteger) tableView:(UITableView *)tableView sectionForSectionIndexTitle:(NSString *)title atIndex:(NSInteger)index
方法中重寫(xiě)了一些方法 代碼如下
- (NSInteger) tableView:(UITableView *)tableView sectionForSectionIndexTitle:(NSString *)title atIndex:(NSInteger)index
{
//1.獲取當(dāng)前index的section的original的y
//2.用tableview.contentsize.height減去y,得到lefty
//3.如果lefty>=tableview.frame.size.height 滾動(dòng)lefty個(gè)單位
//4.如果lefty<tableview.frame.size.height 滾動(dòng)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;
}
//22是斷頭高度城侧,50是每行高度,100是上面無(wú)索引部分附加的高度
-(float)getYOffSet:(NSInteger)index title:(NSString *)title{
//這里的offy = 100 是我在這個(gè)tableview最上面加了兩個(gè)section 不在這個(gè)計(jì)算之內(nèi) 顯示了別的東西 對(duì)于不需要添加特別提示等//顯示,可以設(shè)置為0
float offY = 100;
int count = 0;
//對(duì)應(yīng)的所有內(nèi)容的高度
float addOffy = 0;
//對(duì)應(yīng)標(biāo)題下內(nèi)容不為空 例:以a開(kāi)頭的內(nèi)容有aaa担巩,abc犁嗅,abcd 則a標(biāo)題下不為空童社,addTitleCount加1 計(jì)數(shù)用 通過(guò)這個(gè)計(jì)算一共有
//多少項(xiàng)內(nèi)不為空 總共占用多少header高度 最后一句中得22是我定義的一個(gè)viewforHeader的高度
float addTitleCount = 0;
//sectionTitles 是從a-z加上#之后的列表
//datasource 是對(duì)應(yīng)我的沒(méi)個(gè)section中有幾項(xiàng)內(nèi)容的數(shù)據(jù)
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;
}