Skip to content

Instantly share code, notes, and snippets.

@gracietti
Created April 5, 2017 00:50
Show Gist options
  • Save gracietti/548b14242d11c1efae8146683332ae1a to your computer and use it in GitHub Desktop.
Save gracietti/548b14242d11c1efae8146683332ae1a to your computer and use it in GitHub Desktop.
ReusableView extension
import Foundation
import UIKit
protocol ReusableView: class {}
extension ReusableView {
static var reuseIdentifier: String {
return String(describing: self)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment