加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

swift – 表格标题:多行/自动换行

发布时间:2020-12-14 05:24:18 所属栏目:百科 来源:网络整理
导读:我正在尝试创建一个表格,其中节标题可以是长字符串.我以为我有正确的设置(动态行数,自动换行集),但字符串在结尾处被截断.请注意,节标题的大小高度为80,在其他地方,这足以显示大约3行文本. // Format section headeroverride func tableView(tableView: UITab
我正在尝试创建一个表格,其中节标题可以是长字符串.我以为我有正确的设置(动态行数,自动换行集),但字符串在结尾处被截断.请注意,节标题的大小高度为80,在其他地方,这足以显示大约3行文本.
// Format section header
override func tableView(tableView: UITableView,willDisplayHeaderView view: UIView,forSection section: Int) {

    let header: UITableViewHeaderFooterView = view as! UITableViewHeaderFooterView
    header.contentView.backgroundColor = mainColorBlue
    header.textLabel.textColor = UIColor.whiteColor()

    header.textLabel.textAlignment = NSTextAlignment.Left
    header.textLabel.numberOfLines = 0 // Dynamic number of lines
    header.textLabel.lineBreakMode = NSLineBreakMode.ByWordWrapping
    header.textLabel.font = UIFont(name: "HelveticaNeue-Thin",size: 16)!
    header.textLabel.text = objectsArray[section].sectionName

}
我做相反的事情我将行数设置为一个巨大的数字,然后动态大小工作.

>在IB
>不要设置任何WIDTH / HEIGHT常数
> TableViewCells中只有前导跟踪/顶部/底部控件

self.tableView.sectionHeaderHeight = UITableViewAutomaticDimension;
self.tableView.estimatedSectionHeaderHeight = 25;

- (void)viewDidLoad
{
    [super viewDidLoad];

    //-----------------------------------------------------------------------------------
    //DYNAMIC TEXT and TABLE ROW HEIGHT
    //-----------------------------------------------------------------------------------
    self.tableView.estimatedRowHeight = 80.0f;
    //also done in heightForRowAtIndexPath
    self.tableView.rowHeight = UITableViewAutomaticDimension;

    self.tableView.sectionHeaderHeight = UITableViewAutomaticDimension;
    self.tableView.estimatedSectionHeaderHeight = 80.0f;

}
//comment out
//- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section {

也可以看看
Is it possible to obtain a dynamic table view section header height using Auto Layout?

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读