gpt4 book ai didi

iphone - UITableView 部分索引没有响应

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:56:02 25 4
gpt4 key购买 nike

我有一个启用了部分索引的 TableView 。所有索引都正确显示,但我无法让搜索图标实际响应。左边的图片显示与使用右边的部分索引滚动条后表格滚动一样高,但它应该显示在右侧设计中。任何帮助将不胜感激!!

Left side shows what happens when I scroll through the section index.  It stops at A, but I want the search icon to result in the table view scrolling to the top

最佳答案

在这种情况下,我总是对搜索栏进行自定义滚动,并从委托(delegate)方法返回 -1。

我的 tableView:sectionForSectionIndexTitle:atIndex: 看起来像这样 - 但不确定是否有更好的方法:

- (NSInteger)tableView:(UITableView *)tv sectionForSectionIndexTitle:(NSString *)title atIndex:(NSInteger)index {
NSInteger section = -1;
if ([title isEqualToString:UITableViewIndexSearch]) {
CGRect searchBarFrame = self.searchDisplayController.searchBar.frame;
[tv scrollRectToVisible:searchBarFrame animated:NO];
}
else {
section = whatever logic you use to determine section
}
return section;
}

顺便说一句,这是使用 searchDisplayController 属性。

关于iphone - UITableView 部分索引没有响应,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6904446/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com