Skip to content

Instantly share code, notes, and snippets.

@hungdv136
Created December 27, 2016 04:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hungdv136/d02baaad490a7968f3853dddb3621f25 to your computer and use it in GitHub Desktop.
Save hungdv136/d02baaad490a7968f3853dddb3621f25 to your computer and use it in GitHub Desktop.
BehaviorSubject example
let contentOffsetSubject = BehaviorSubject<CGPoint>(scrollView.contentOffset)
func scrollViewDidScroll(_ scrollView: UIScrollView) {
contentOffsetSubject.on(.next(scrollView.contentOffset))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment