Skip to content

Instantly share code, notes, and snippets.

@thinkclay
Created March 28, 2013 08:32
Show Gist options
  • Save thinkclay/5261627 to your computer and use it in GitHub Desktop.
Save thinkclay/5261627 to your computer and use it in GitHub Desktop.
RubyMotion - Notification when App enters Foreground
def viewWillAppear(animated)
@foreground_observer = App.notification_center.observe UIApplicationWillEnterForegroundNotification do |notification|
// call method here
end
end
def viewWillDisappear(animated)
App.notification_center.unobserve @foreground_observer
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment