作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当我以编程方式为 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 。
此外,不要同时实现 titleViewHeaderInSection
和 viewForHeaderInSection
。只是一个或另一个。如果您确实实现了 viewForHeaderInSection
,请确保您也实现了 heightForHeaderInSection
。
关于ios - 设置TableViewHeader时,section header文本被移除,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25128917/
我正在做一个项目,我的 android 在这个项目中作为一个网络服务器工作;输入带端口号的 IP 地址,打开 Web 界面,用户可以将文件上传到手机。我想在 Web 界面上显示一些图片,以便我们的界面
我是一名优秀的程序员,十分优秀!