Add required inits.

This commit is contained in:
Brent Simmons 2025-02-02 20:37:52 -08:00
parent 7f313168d8
commit c2ff8b1ff5
2 changed files with 10 additions and 0 deletions

View File

@ -107,6 +107,11 @@ final class MainFeedTableViewCell: VibrantTableViewCell {
private var unreadCountView = MainFeedUnreadCountView(frame: CGRect.zero)
private var isShowingEditControl = false
override init(style: UITableViewCell.CellStyle, reuseIdentifier: String?) {
super.init(style: style, reuseIdentifier: reuseIdentifier)
commonInit()
}
required init?(coder: NSCoder) {
super.init(coder: coder)
commonInit()

View File

@ -32,6 +32,11 @@ final class MainTimelineTableViewCell: VibrantTableViewCell {
}
}
override init(style: UITableViewCell.CellStyle, reuseIdentifier: String?) {
super.init(style: style, reuseIdentifier: reuseIdentifier)
commonInit()
}
required init?(coder: NSCoder) {
super.init(coder: coder)
commonInit()