Guest User

Untitled

a guest
Mar 19th, 2018
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. protocol Configureable: class {
  2. var planType: Plantype { get set }
  3. var counterType: CounterType { get set }
  4. }
  5.  
  6. extension Configureable where Self: Test2ViewController {...//RETURN PLANTYPE}
  7. extension Configureable where Self: TestViewController {...//RETURN COUNTERTYPE}
  8.  
  9. @objc protocol CounterDataSource {
  10. @objc optional func increment(forCount count: Int) -> Int
  11. @objc optional var fixedIncrement: Int { get }
  12. }
Add Comment
Please, Sign In to add comment