我使用UITableViewCell编写tableView代码。 我在viewDidLoad注册单元格
tableView.register(UITableViewCell.self, forCellReuseIdentifier: kMineCellidentifier)
并在cellForItemAtIndexPath上使用
var cell = tableView.dequeueReusableCell(withIdentifier: kMineCellidentifier, for: indexPath)
但这个init的样式默认,我如何按样式value1初始化单元格?
答案 0 :(得分:1)
您无法重新设置现有UITableViewCell
的样式。但是你可以在方便的时候创建Cell
时这样做。像:
UITableViewCell(style: .value1, reuseIdentifier: "SomeIdentifier")