ClassIdentifiable.swift 343 B

12345678910111213141516171819
  1. //
  2. // ClassIdentifiable.swift
  3. // Bio
  4. //
  5. // Created by Joan Disho on 22.07.18.
  6. // Copyright © 2018 Joan Disho. All rights reserved.
  7. //
  8. import UIKit
  9. protocol ClassIdentifiable: class {
  10. static var reuseId: String { get }
  11. }
  12. extension ClassIdentifiable {
  13. static var reuseId: String {
  14. return String(describing: self)
  15. }
  16. }