I have created custom tableViewCell,and I don't understand why do i need to init it 2 times , override init and super.init ,what this code does, please explain
class tablecell: UITableViewCell {
override init(style: UITableViewCellStyle, reuseIdentifier: String?) {
super.init(style: .subtitle, reuseIdentifier: reuseIdentifier)
}
}