EnkiUtils
Small library of classes that Enki Labs uses internally.
 All Classes Functions Properties Pages
UIScreen+EnkiUtils.m
1 //
2 // UIScreen+EnkiUtils.m
3 //
4 // Copyright (c) 2013 brian.clear
5 //
6 
7 #import "UIScreen+EnkiUtils.h"
8 
9 @implementation UIScreen (EnkiUtils)
10 
11 // from http://stackoverflow.com/questions/5337924/ipad-2-detection
12 // thanks brian.clear
13 
14 - (BOOL)Enki_isRetina {
15  return [self respondsToSelector:@selector(displayLinkWithTarget:selector:)] && (self.scale == 2.0);
16 }
17 
18 @end