Created
December 10, 2015 01:52
-
-
Save ikhanhmai/8d0f48090a49d7a2b1a6 to your computer and use it in GitHub Desktop.
iOS - returnFromBackground
This file contains hidden or 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
override func viewWillAppear(animated: Bool) { | |
super.viewWillAppear(animated) | |
NSNotificationCenter.defaultCenter().addObserver(self, selector: "returnFromBackground", name: UIApplicationDidBecomeActiveNotification, object: nil) | |
} | |
override func viewWillDisappear(animated: Bool) { | |
super.viewWillDisappear(animated) | |
NSNotificationCenter.defaultCenter().removeObserver(self,name: UIApplicationDidBecomeActiveNotification, object: nil) | |
} | |
func returnFromBackground(){ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment