Created
June 23, 2020 07:12
-
-
Save GemmaDelOlmo/e630314c26f1885517e61977ee441506 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import Foundation | |
| import UIKit | |
| protocol ReusableView: class { | |
| static var defaultReuseIdentifier: String { get } | |
| } | |
| extension ReusableView where Self: UIView { | |
| static var defaultReuseIdentifier: String { | |
| return String(describing: self) | |
| } | |
| } | |
| extension UITableViewCell: ReusableView {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment