如何使用默认的样式初始化tableViewCell?

时间:2017-05-16 02:57:07

标签: swift uitableview tableviewcell

我使用UITableViewCell编写tableView代码。 我在viewDidLoad注册单元格

        tableView.register(UITableViewCell.self, forCellReuseIdentifier: kMineCellidentifier)

并在cellForItemAtIndexPath上使用

var cell = tableView.dequeueReusableCell(withIdentifier: kMineCellidentifier, for: indexPath)

但这个init的样式默认,我如何按样式value1初始化单元格?

1 个答案:

答案 0 :(得分:1)

您无法重新设置现有UITableViewCell的样式。但是你可以在方便的时候创建Cell时这样做。像:

UITableViewCell(style: .value1, reuseIdentifier: "SomeIdentifier")