Skip to content

Instantly share code, notes, and snippets.

@maxcampolo
Created June 13, 2016 15:21
Show Gist options
  • Save maxcampolo/ea4ae4ed00f8a04cd185b6c151654f52 to your computer and use it in GitHub Desktop.
Save maxcampolo/ea4ae4ed00f8a04cd185b6c151654f52 to your computer and use it in GitHub Desktop.
Check if a UIViewController is currently visible.
extension UIViewController {
func isVisible() -> Bool {
return self.isViewLoaded() && self.view.window != nil
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment