Skip to content

Instantly share code, notes, and snippets.

@kharmabum
Created August 16, 2017 15:57
Show Gist options
  • Save kharmabum/6601abcd6d9f098aac1849038d6133f9 to your computer and use it in GitHub Desktop.
Save kharmabum/6601abcd6d9f098aac1849038d6133f9 to your computer and use it in GitHub Desktop.
do something once
// http://www.fantageek.com/blog/2016/09/06/Once-in-Swift/
class Once {
var already: Bool = false
func run(@noescape block: () -> Void) {
guard !already else { return }
block()
already = true
}
}
class ViewController: UIViewController {
let once = Once()
override func viewDidAppear(animated: Bool) {
super.viewDidAppear(animated)
once.run {
cameraMan.setup()
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment