Add required inits.
This commit is contained in:
parent
7f313168d8
commit
c2ff8b1ff5
@ -107,6 +107,11 @@ final class MainFeedTableViewCell: VibrantTableViewCell {
|
|||||||
private var unreadCountView = MainFeedUnreadCountView(frame: CGRect.zero)
|
private var unreadCountView = MainFeedUnreadCountView(frame: CGRect.zero)
|
||||||
private var isShowingEditControl = false
|
private var isShowingEditControl = false
|
||||||
|
|
||||||
|
override init(style: UITableViewCell.CellStyle, reuseIdentifier: String?) {
|
||||||
|
super.init(style: style, reuseIdentifier: reuseIdentifier)
|
||||||
|
commonInit()
|
||||||
|
}
|
||||||
|
|
||||||
required init?(coder: NSCoder) {
|
required init?(coder: NSCoder) {
|
||||||
super.init(coder: coder)
|
super.init(coder: coder)
|
||||||
commonInit()
|
commonInit()
|
||||||
|
@ -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) {
|
required init?(coder: NSCoder) {
|
||||||
super.init(coder: coder)
|
super.init(coder: coder)
|
||||||
commonInit()
|
commonInit()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user