Skip to content

Instantly share code, notes, and snippets.

@GemmaDelOlmo
Last active June 23, 2020 07:06
Show Gist options
  • Select an option

  • Save GemmaDelOlmo/59e6582ce9c756feaa50e105347046d1 to your computer and use it in GitHub Desktop.

Select an option

Save GemmaDelOlmo/59e6582ce9c756feaa50e105347046d1 to your computer and use it in GitHub Desktop.
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