美文网首页
居中UITableView中section的标题

居中UITableView中section的标题

作者: 出门请右拐 | 来源:发表于2016-09-23 12:44 被阅读152次

用table view的代理给section设置title时,默认的title时左对齐的,居中设置可以使用下面这样就可以了,不需要设置section的view:

- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section {
    [[UILabel appearanceWhenContainedInInstancesOfClasses:@[[UITableViewHeaderFooterView class]]] setTextAlignment:NSTextAlignmentCenter];    
    [[UILabel appearanceWhenContainedInInstancesOfClasses:@[[UITableViewHeaderFooterView class]]] setFont:[UIFont systemFontOfSize:12.0 weight:UIFontWeightThin]];
    retun @"title";
}

效果如下:

居中section的title

相关文章

网友评论

      本文标题:居中UITableView中section的标题

      本文链接:https://www.haomeiwen.com/subject/hmytyttx.html