gpt4 book ai didi

ios - 设置TableViewHeader时,section header文本被移除

转载 作者:行者123 更新时间:2023-11-29 02:45:59 25 4
gpt4 key购买 nike

当我以编程方式为 UITableView 设置 headerView 时,任何部分都将丢失其部分标题文本。

我只是在加载 View 后使用此代码设置 header (并且已发出 REST 请求)

/* In the request response method */
self.tableView.tableHeaderView = self.alertView;
shouldShowBanner = YES;
[self.tableView reloadData];

- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section{
if(shouldShowBanner){
return self.alertView;
} else {
return nil;
}
}

我根据从服务器获得的响应以编程方式创建 View 。如果我不显示自定义标题,部分标题将正常工作(正如我在 Storyboard 中设置的那样)。但是一旦它显示部分标题就会消失。

我尝试使用委托(delegate)协议(protocol)中的这个方法

- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section{
return @"Section Title";
}

它被调用了,但似乎没有做任何事情。需要说明的是,我正在创建的 View 显示没有任何问题。

最佳答案

一个 View 只能有一个父 View 。它 (self.alertView) 不能同时在表头 View 和节头 View 中。

为两者创建单独的 View 。

此外,不要同时实现 titleViewHeaderInSectionviewForHeaderInSection。只是一个或另一个。如果您确实实现了 viewForHeaderInSection,请确保您也实现了 heightForHeaderInSection

关于ios - 设置TableViewHeader时,section header文本被移除,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25128917/

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