JMErickson17
2/2/2018 - 7:52 PM

NibLoadableView

A protocol and extension that adds nibName property to conforming types.

protocol NibLoadableView: class {}

extension NibLoadableView where Self: UIView {
  static var nibName: String {
    return String(self)
  }
}