Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. protocol BaseViewProtocol {
  2. func someFunction()
  3. }
  4.  
  5. extension BaseViewProtocol where Self: UIViewController {
  6.  
  7. func someFunction() {
  8. // Logic
  9. }
  10. }
  11.  
  12. class PageBaseViewController: UIPageViewController, BaseViewProtocol
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement