Last active
June 23, 2020 07:06
-
-
Save GemmaDelOlmo/59e6582ce9c756feaa50e105347046d1 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 Foundation | |
| import UIKit | |
| protocol NibLoadableView: class { | |
| static var nibName: String { get } | |
| } | |
| extension NibLoadableView where Self: UIView { | |
| static var nibName: String { | |
| return String(describing: self) | |
| } | |
| } | |
| extension <#YOUR_CLASS_NAME#>: NibLoadableView {} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment