Skip to content

Instantly share code, notes, and snippets.

@StanislavK
Created February 11, 2018 12:06
Show Gist options
  • Select an option

  • Save StanislavK/4562720d337c12a2530b07059131bfb3 to your computer and use it in GitHub Desktop.

Select an option

Save StanislavK/4562720d337c12a2530b07059131bfb3 to your computer and use it in GitHub Desktop.
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