Created
February 11, 2018 12:06
-
-
Save StanislavK/4562720d337c12a2530b07059131bfb3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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