Skip to content

Instantly share code, notes, and snippets.

@mutekinootoko
Created January 16, 2015 07:54
Show Gist options
  • Save mutekinootoko/791d223cfb978fbb41fa to your computer and use it in GitHub Desktop.
Save mutekinootoko/791d223cfb978fbb41fa to your computer and use it in GitHub Desktop.
find iphone screen size
CGRect screenBounds = [[UIScreen mainScreen] bounds];
CGFloat screenScale = [[UIScreen mainScreen] scale];
CGSize screenSize = CGSizeMake(screenBounds.size.width * screenScale, screenBounds.size.height * screenScale);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment