Skip to content

Instantly share code, notes, and snippets.

@ShoMasegi
Created September 11, 2018 08:07
Show Gist options
  • Save ShoMasegi/31cdbb1fe7488842e6eca427b29914e3 to your computer and use it in GitHub Desktop.
Save ShoMasegi/31cdbb1fe7488842e6eca427b29914e3 to your computer and use it in GitHub Desktop.
hatena_uitableview_reuse
protocol Reusable: class {
static var reuseIdentifier: String { get }
}
extension Reusable where Self: UIView {
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