Advertisement
Guest User

Untitled

a guest
May 23rd, 2019
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Swift 0.26 KB | None | 0 0
  1. protocol MyProtocol {
  2.     static func isValid() -> Bool
  3. }
  4.  
  5. extension MyProtocol {
  6.     static func isValid() -> Bool {
  7.         return false
  8.     }
  9. }
  10.  
  11. class SampleCell: BaseCell {
  12.     override static func isValid() -> Bool {
  13.         return true
  14.     }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement