我正在快速开发一个项目,该项目需要根据标签内容使单元格大小动态变化,因此我搜索了动态单元格高度,我找到了一些解决方案,但所有这些都包括使用情节提要来分配约束。没有故事板是否可以做到这一点。是否可以以编程方式进行?我的意思是在没有故事板的情况下应用自我调整大小
我的代码是:
class a: UITableViewDelegate, UITableViewDataSource {
tableView = UITableView(frame: CGRectMake(0, 0, self.view.frame.width, self.view.frame.height), style: UITableViewStyle.Plain)
tableView.delegate = self
tableView.dataSource = self
tableView.estimatedRowHeight = 100
tableView.rowHeight = UITableViewAutomaticDimension
self.view.addSubview(tableView)
}
希望问题很清楚。
提前致谢。
编辑:下面的答案都没有帮助