gpt4 book ai didi

ios - 正确的子类化和重用 UITableViewHeaderFooterView

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

我有一个 UITableView,其中有部分标题,可以点击这些标题来展开或折叠该部分。在我的特定示例中,每个部分只有一行,它是可见的(展开的部分)或隐藏的(折叠的部分)。作为部分标题,我使用自定义 UITableViewHeaderFooterView - HeaderAccountView。我在 Interface Builder 创建了 *.xib 文件,并将其自定义类设置为我的 HeaderAccountView(仍在 IB 字段)。

在我的 HeaderAccountView.h 和 HeaderAccountView.m 文件中,init 方法或类似的东西没有任何变化 - 只有一些功能可以突出显示自身(所选部分)等。

在我的主要 ViewController .m 文件中

- (void)viewDidLoad
{
[super viewDidLoad];
.........
.........

UITableView *tableView = (id)[self.view viewWithTag:1];
UINib *nib= [UINib nibWithNibName:@"HeaderAccountView" bundle:nil];
[tableView registerNib:nib forHeaderFooterViewReuseIdentifier:@"HeaderCell"];


}

然后

  - (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
HeaderAccountView *headerView = [tableView dequeueReusableHeaderFooterViewWithIdentifier:@"HeaderCell"];
if (headerView==nil)
{ headerView = [[HeaderAccountView alloc]
initWithReuseIdentifier:@"HeaderCell"];
}
return headerView;
}

当我运行项目时,一切正常 - 部分加载所需数据,当部分收到点击时 - 它突出显示(如标准单元格)。

但是当我从 tableview 滚动到底部时,例如从选定的突出显示部分,这个突出显示的部分已经在 View 中不可见 - 刚刚从底部出现的部分 - 已经突出显示!

我知道这是因为它创建了我的 HeaderAccountView 的新实例,并将属性 BOOL selected 设置为 YES。

但我是 objective-c(和编码)的新手,不知道如何正确解决这个问题。

我尝试像这样使用自定义 UITableViewHeaderFooterView 的 prepareForReuse 方法

  HeaderAccountView.m:
-(void) prepareForReuse
{
self.selectedBackground.alpha = 0;
}

效果更好 - 但现在我有另一个问题 - 当我返回到我的第一个(真正)选择和突出显示的部分时 - 它显然没有突出显示。

感谢您的帮助,如果是基本问题,我们深表歉意。

最佳答案

您必须手动保留所选 header 索引的列表。

接下来,在您的 View Controller 中实现方法 tableView:willDisplayHeaderView: 以在显示标题时刷新标题。

- (void)tableView:(UITableView *)tableView willDisplayHeaderView:(UIView *)view forSection:(NSInteger)section
{
view.selectedBackground.alpha = ([_highlightedHeadersList containsObject:@(section)] ? 0.0f : 1.0f);
}

并且您必须在 _highlightedHeadersList 中添加/删除索引。

关于ios - 正确的子类化和重用 UITableViewHeaderFooterView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18431543/

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