I got this old post: How to subclass UITableView? and this old video: https://www.youtube.com/watch?v=FfZGKx4BYVU but this did not help me. What I want is very simple, I got an UITableViewController with dynamic cells. I want to outlet those cells. This is only possible if I "subclass" it. I made another file what looks like this:
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
}
}
But I still can not add those outlets from the UITableViewController to this file. My cells needs to be dynamic. I think I am only missing one step, but what step is that? Thank you.