请确实我需要6天的时间才能解决此问题,但我找不到解决方案。
我想制作简单的表格视图,但其单元格始终具有静态高度,该高度不会因其中的项目而改变
结果始终像这样image from emulator。
我想在每个单元格中显示此示例:
1 1 11 1 1111 1 1 11 11 11 1 1 1 11 1 1 11 11 1 11 11 11 11 11
22 22 2 2 2 2 2 2 2 2 2 2 2 22 22 22 22 22 2 2 22 2 2 2 2 22 2 2 22
33 33 3 3 3 3 3 3 3 3 3 3 3 3 3 33 3 3 3 3 33 33 3 3 3 3 3 333 3 3 3 3
444 44 4 44 444 4 4 4 4 4 4 4 4 4 44 4 4 44 4 4 4 4 4 4 4 4 44 44 4
它必须以垂直对齐方式显示在4个标签中,但结果如前所示
我尝试了所有方法,例如使用情节提要或通过代码制作视图,但最终,我使用了名为的库Stevia ,但结果仍然相同
这是视图控制器
class AttendanceControlPage:UIViewController,UITableViewDataSource,UITableViewDelegate {
@IBOutlet weak var dataTableView: UITableView!
@IBOutlet weak var navLeftButton: UIBarButtonItem!
//============================ Base Functions =================//
override func viewDidLoad() {
super.viewDidLoad()
// Some tutorials said to put this two lines but not changes
dataTableView.estimatedRowHeight = 44
dataTableView.rowHeight = UITableViewAutomaticDimension
initPage()
dataTableView.register(AttendanceControlCell.self, forCellReuseIdentifier: "cellCon")
}
//============================ Init Functions =================//
func initPage() {
startLoading()
self.navLeftButton.image = UIImage(named: "icn_drawer")
}
//==================== Nav Bar Buttons Actions ===================================//
@IBAction func reloadPage(_ sender: Any) {
self.dataArray.removeAll()
loadData();
}
@IBAction func navLeftButtonAction(_ sender: Any) {
showMenu()
}
//==================== Table view options ===================================//
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return 6
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = dataTableView.dequeueReusableCell(withIdentifier: "cellCon", for: indexPath) as! AttendanceControlCell
return cell
}
}
这是单元文件:
class AttendanceControlCell: UITableViewCell {
override init(style: UITableViewCellStyle, reuseIdentifier: String?) {
super.init(style: style, reuseIdentifier: reuseIdentifier)
initFunc(cell : self)
}
required init?(coder aDecoder: NSCoder) {
super.init(coder: aDecoder)!
}
func initFunc(cell : UITableViewCell) {
let name1 = UILabel()
name1.numberOfLines = 0
name1.text = "1 1 11 1 1111 1 1 11 11 11 1 1 1 11 1 1 11 11 1 11 1 11 11 11 "
let name2 = UILabel()
name2.numberOfLines = 0
name2.text = "22 22 2 2 2 2 2 2 2 2 2 2 2 22 22 22 22 2 2 22 2 2 2 2 22 2 2 22 "
let name3 = UILabel()
name3.numberOfLines = 0
name3.text = "33 33 3 3 3 3 3 3 3 3 3 3 3 3 3 3 33 3 3 3 33 33 3 3 3 3 3 333 3 3 3 3 "
let name4 = UILabel()
name4.numberOfLines = 0
name4.text = "444 44 4 44 444 4 4 4 4 4 4 4 4 4 4 44 4 4 44 4 4 4 4 4 4 4 44 44 4 "
cell.contentView.sv(
name1,
name2,
name3,
name4
)
layout(
20,
|name1|,
20,
|name2|,
20,
|name3|,
20,
|name4|
)
}
override func awakeFromNib() {
super.awakeFromNib()
}
}
这是我的故事板:仅包含带有单元格的表视图
my storyboard image
请真的我需要帮助
最佳答案
最后,我找到了问题。
问题是我在创建视图时忘记写最后一个视图的底部约束
所以这部分
layout(
20,
|name1|,
20,
|name2|,
20,
|name3|,
20,
|name4|
)
应该用这个代替
layout(
20,
|name1|,
20,
|name2|,
20,
|name3|,
20,
|name4|,
0
)
感谢所有试图帮助我的人...
希望我的回答对遇到山姆问题的人有所帮助