Skip to content

Instantly share code, notes, and snippets.

@gartmeier
Created July 20, 2012 09:33
Show Gist options
  • Select an option

  • Save gartmeier/3149880 to your computer and use it in GitHub Desktop.

Select an option

Save gartmeier/3149880 to your computer and use it in GitHub Desktop.
as3 check iOS device
if (Capabilities.os.indexOf('iPhone') > -1 || Capabilities.os.indexOf('iPad') > -1) {
// iOS
} else {
// other
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment