Created
August 16, 2017 15:57
-
-
Save kharmabum/6601abcd6d9f098aac1849038d6133f9 to your computer and use it in GitHub Desktop.
do something once
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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