add initializer

This commit is contained in:
Pfeil, Scott Robert 2020-05-05 14:27:41 -04:00
parent 3347f4a0af
commit c6c26874ab

View File

@ -44,6 +44,10 @@ import UIKit
super.init(frame: .zero)
}
public override init(frame: CGRect) {
super.init(frame: frame)
}
public required init?(coder aDecoder: NSCoder) {
super.init(coder: aDecoder)
}