Skip to content

Instantly share code, notes, and snippets.

@malcolmkmd
Created September 20, 2017 06:44
Show Gist options
  • Save malcolmkmd/ea09fe67749e4b1256727f8855869506 to your computer and use it in GitHub Desktop.
Save malcolmkmd/ea09fe67749e4b1256727f8855869506 to your computer and use it in GitHub Desktop.
ResuableView
import UIKit
protocol ReusableView: class {}
extension ReusableView {
static var reuseIdentifier: String {
return String(describing: self)
}
}
extension UITableViewCell: ReusableView { }
extension UICollectionViewCell: ReusableView { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment