Skip to content

Instantly share code, notes, and snippets.

@toshi0383
Created June 23, 2017 06:47
Show Gist options
  • Save toshi0383/61b16fd22030a3d7fd296d3aec7f5855 to your computer and use it in GitHub Desktop.
Save toshi0383/61b16fd22030a3d7fd296d3aec7f5855 to your computer and use it in GitHub Desktop.
// Using RxSwift
override func viewDidLoad() {
super.viewDidLoad()
rx.sentMessage(#selector(viewWillAppear(_:)))
.skip(1)
.subscribe(onNext: {
self.doSomething()
})
.disposed(by: rx_disposeBag)
rx.sentMessage(#selector(viewDidLayoutSubviews))
.take(1)
.subscribe(onNext: {
self.doSomething()
})
.disposed(by: rx_disposeBag)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment