Skip to content

Instantly share code, notes, and snippets.

@malcolmkmd
Created September 20, 2017 06:45
Show Gist options
  • Save malcolmkmd/6efdd4e59944f7464f5b5b61779d2459 to your computer and use it in GitHub Desktop.
Save malcolmkmd/6efdd4e59944f7464f5b5b61779d2459 to your computer and use it in GitHub Desktop.
Nibloadable
import UIKit
protocol NibLoadableView: class { }
extension NibLoadableView {
static var nibName: String {
return String(describing: self)
}
}
extension UITableViewCell: NibLoadableView { }
extension UICollectionViewCell: NibLoadableView { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment