我创建了一个表格 View 单元子类并将其设置为原型(prototype)的类。我想将 socket 添加到该类并连接它们。
但是 xcode 没有响应。
我下次尝试添加按钮的 socket ,它可以工作。
我想展示一张图片,可惜我没有足够的声誉。
我不明白为什么会这样。有人可以帮帮我吗,拜托!!
Best Answer-推荐答案 strong>
- 创建一个 xib 文件。删除 UIView 并拖动 UITableviewcell。
- 设置您的 UITableviewcell 类和单元格的标识符
- 拖动单元格上的组件并将它们与您的类(class)联系起来。
在你的 UITableViewController 的方法 (void)viewDidLoad 上,设置:
[self.tableView registerNib:[UINib nibWithNibName:nameOfXibFile bundle:[NSBundle mainBundle]] forCellWithReuseIdentifier:identifierOfCell];
关于方法(UITableViewCell *)tableViewUITableView *)tableView cellForRowAtIndexPathNSIndexPath *)indexPath ,设置:
YourClassTableViewCell *cell = [tableView dequeueReusableCellWithReuseIdentifier:identifierOfCell forIndexPath:indexPath];
并设置标签的值cell.label.text = @"Your text"。
祝你好运!
关于ios - 为什么 Label Outlets 不能连接到 UITableViewCell 类,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/28690066/
|