Guest User

Untitled

a guest
Jul 21st, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. //
  2. // UIScreen+Utils.m
  3. // LiveGO
  4. //
  5. // Created by Ahmet Ardal on 2/3/11.
  6. // Copyright 2011 MessengerFX. All rights reserved.
  7. //
  8.  
  9. #import "UIScreen+Utils.h"
  10.  
  11. @implementation UIScreen(Utils)
  12.  
  13. - (BOOL) isRetina
  14. {
  15. return [self respondsToSelector:@selector(scale)] && ([self scale] == 2.0f);
  16. }
  17.  
  18. @end
Add Comment
Please, Sign In to add comment