Created
April 1, 2015 19:38
-
-
Save pmairoldi/01626254b61658a04cc8 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- (NSString *)deviceIdentifier NS_AVAILABLE_IOS(8_0) { | |
UIScreen *screen = [UIScreen mainScreen]; | |
CGSize size = screen.nativeBounds.size; | |
CGFloat scale = screen.nativeScale; | |
NSString *identifier = [NSString stringWithFormat:@"w_%.00f_h_%.00f", size.width / scale , size.height / scale]; | |
return identifier; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment