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 self.tableView.sectionHeaderHeight = UITableViewAutomaticDimension; - (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 { 也可以看看 (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |