首页 > 学院 > 开发设计 > 正文

ios8UITableViewsection不显示

2019-11-14 19:58:15
字体:
来源:转载
供稿:网友

ios8 如果UITableView只设置viewForHeaderInSection,则可能section不能显示,iOS7及以下版本显示正常。

解决方案:

设置heightForHeaderInSection。

- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section{    return 22;//自定义高度}

 

另外,

如果代码中设置了titleForHeaderInSection,则不需要上面的设置也可以正常显示。

- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section; 

 


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表