| 12345678910111213141516171819202122 |
- 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")
- }
- }
|