Skip to content

Instantly share code, notes, and snippets.

@jlcampana
Created January 20, 2012 10:18
Show Gist options
  • Save jlcampana/1646570 to your computer and use it in GitHub Desktop.
Save jlcampana/1646570 to your computer and use it in GitHub Desktop.
Runtime check for iOS5
+(BOOL)deviceIsRunningOS5
{
UIScreen *s = [UIScreen mainScreen];
return [s respondsToSelector:@selector(brightness)];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment