暂无描述

NiblessView.swift 472B

123456789101112131415161718192021
  1. //
  2. // NiblessView.swift
  3. // PaiaiUIKit
  4. //
  5. // Created by FFIB on 2019/2/6.
  6. // Copyright © 2019 FFIB. All rights reserved.
  7. //
  8. import UIKit
  9. open class NiblessView: UIView {
  10. public override init(frame: CGRect) {
  11. super.init(frame: frame)
  12. }
  13. @available(*, unavailable, message: "Loading this view from a nib is unsupported")
  14. public required init?(coder aDecoder: NSCoder) {
  15. fatalError("Loading this view from a nib is unsupported")
  16. }
  17. }