Skip to content

Instantly share code, notes, and snippets.

@iranjith4
Created November 23, 2018 09:02
Show Gist options
  • Save iranjith4/24c1ab2214c2ed9ea08079602e97db2f to your computer and use it in GitHub Desktop.
Save iranjith4/24c1ab2214c2ed9ea08079602e97db2f to your computer and use it in GitHub Desktop.
reusableview-identifier-declaration
extension ReusableView where Self: UIView {
static var defaultReuseIdentifier: String {
return String(describing: self)
}
}
extension NibLoadableView where Self: UIView {
static var nibName: String {
return String(describing: self)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment