Advertisement
Guest User

Untitled

a guest
Jul 29th, 2015
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. protocol UIScrollViewDelegate: NSObjectProtocol { ... }
  2. class UIScrollView: UIView {
  3. ...
  4. weak var delegate: UIScrollViewDelegate?
  5. ...
  6. }
  7.  
  8. protocol UITableViewDelegate: NSObjectProtocol, UIScrollViewDelegate { ... }
  9. class UITableView: UIScrollView {
  10. ...
  11. weak var delegate: UITableViewDelegate?
  12. ...
  13. }
  14.  
  15. protocol MyScrollViewSubclassDelegate: NSObjectProtocol, UIScrollViewDelegate { ... }
  16. class MyScrollViewSubclass: UIScrollView {
  17. ...
  18. weak var delegate: MyScrollViewSubclassDelegate?
  19. ...
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement