我得到了這個舊帖子:How to subclass UITableView?和這個舊視頻:https://www.youtube.com/watch?v=FfZGKx4BYVU但這並沒有幫助我。我想要的是非常簡單的,我得到了一個具有動態單元的UITableViewController。我想出口這些細胞。這是唯一可能的,如果我「子類」它。我做了另一個文件看起來是這樣的:如何繼承UITableViewCell?
import UIKit
class CreateChannelCell: UITableViewCell {
override func awakeFromNib() {
super.awakeFromNib()
// Initialization code
}
override func setSelected(_ selected: Bool, animated: Bool) {
super.setSelected(selected, animated: animated)
// Configure the view for the selected state
}
}
但我仍然可以從的UITableViewController到這個文件不添加這些網點。我的細胞需要是動態的。我想我只是失去了一步,但那是什麼步驟?謝謝。