Guest User

Untitled

a guest
Dec 11th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. public protocol InteractionDelegate: class {
  2.  
  3. func containerView(_ containerView: UIView, shouldSelect item: ItemViewModel) -> Bool
  4.  
  5. func containerView(_ containerView: UIView, didSelect item: ItemViewModel)
  6.  
  7. func containerView(_ containerView: UIView, shouldDeselect item: ItemViewModel) -> Bool
  8.  
  9. func containerView(_ containerView: UIView, didDeselect item: ItemViewModel)
  10.  
  11. func containerView(_ containerView: UIView, shouldHighlight item: ItemViewModel) -> Bool
  12.  
  13. func containerView(_ containerView: UIView, didHighlight item: ItemViewModel)
  14.  
  15. func containerView(_ containerView: UIView, didUnhighlight item: ItemViewModel)
  16. }
Add Comment
Please, Sign In to add comment