如何快速编写 [UITableViewCell 类]?
Posted
技术标签:
【中文标题】如何快速编写 [UITableViewCell 类]?【英文标题】:How can I write [UITableViewCell class] in swift? 【发布时间】:2015-07-07 09:20:22 【问题描述】:在 Objective-c 中,我们可以这样为UITableView
注册类:
[self.tableView registerClass:[UITableViewCell class] forCellReuseIdentifier:@"cellIdentifier"];
但我不能在 Swift 中编写 UITableViewCell
类。那么如何在swift中写[UITableViewCell class]
呢?
【问题讨论】:
UITableView Using Swift 的可能重复项 【参考方案1】:您可以这样做来注册您的课程:
self.tableView.registerClass(UITableViewCell.self, forCellReuseIdentifier: "cellIdentifier")
【讨论】:
以上是关于如何快速编写 [UITableViewCell 类]?的主要内容,如果未能解决你的问题,请参考以下文章
如何使用 StoryBoard 在 UITableViewCell 内快速构建一个 collectionView
如何在 UITableViewCell 中快速创建 facebook 注销按钮
如何快速从 UITableViewCell 动态中获取文本字段的值?
如何以编程方式快速向 UITableViewCell 内的 UIStackView 添加约束?