class CustomUIView: UIView {
init() {
super.init(frame: .zero)
// any initialization comes here...
}
required init?(coder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
}
class CustomUIView: UIView {
init() {
super.init(frame: .zero)
// any initialization comes here...
}
required init?(coder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
}