如何在故事板中连接原型单元?

时间:2014-11-21 16:41:09

标签: ios objective-c

我在故事板中创建了一个tableview,以及一个自定义原型单元。我已经在故事板中设置了单元格标识符,并且我正在尝试将其出列并且正在获取:

无法使用标识符TTEntry对单元格出列 - 必须为标识符注册nib或类或在故事板中连接原型单元格

我无法在故事板TableCell属性中看到任何其他内容来链接它。我只是不知道消息是什么。

有人能指出我正确的方向吗?

谢谢!

Screwtape。

5 个答案:

答案 0 :(得分:12)

来自故事板:

  1. 在属性检查器中设置重用标识符
  2. 在Jignesh Agola提及的故事板中添加CustomCell类
  3. 从代码(如柠檬石灰柚子贴):

    c_{i,j}

答案 1 :(得分:2)

在故事板中添加CustomCell类

enter image description here

答案 2 :(得分:0)

您应该能够1)添加Jignesh提到的CustomCell类,或者2)以编程方式在UITableViewController的viewDidLoad中注册nib:

let nib = UINib(nibName: "yourCellIdentifier", bundle: nil)
self.tableView.register(nib, forCellReuseIdentifier:"yourCellIdentifier")

答案 3 :(得分:0)

如果您使用的是搜索显示控制器

[self.searchDisplayController.searchResultsTableView registerClass:[YourClass class] forCellReuseIdentifier:@"yourCellIdentifier"];

答案 4 :(得分:0)

您可以添加

tableview.register(YourClass.self, forCellReuseIdentifier: "YourIdentifier")

如果您编写的代码没有情节提要,xib等,则