我试图初始化UITableViewCell,但它不允许我按名称引用样式枚举:
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell = UITableViewCell(style: UITableViewCellStyle.Default, reuseIdentifier: "Cell")
cell.textLabel?.text = cellContent[indexPath.row]
return cell
}
结果"静态成员'默认'不能在类型' UITableViewCellStyle的实例上使用。"
如果我只是将样式称为" .Default"并且不要使用" UITableViewCellStyle" enum名称从一开始就很好用。这与我在网上看过的所有文档和教程相反。
为什么第一种方法不起作用的任何想法?