123456789101112131415161718192021 |
- import UIKit
- open class NiblessView: UIView {
- public override init(frame: CGRect) {
- super.init(frame: frame)
- }
- @available(*, unavailable, message: "Loading this view from a nib is unsupported")
- public required init?(coder aDecoder: NSCoder) {
- fatalError("Loading this view from a nib is unsupported")
- }
- }
|