EnkiUtils
Small library of classes that Enki Labs uses internally.
 All Classes Functions Properties Pages
EnkiUtilities.h
1 //
2 // EnkiUtilities.h
3 //
4 // Created by Paul Cezanne on 12/13/11.
5 // Copyright (c) 2011-2013 Enki Labs. All rights reserved.
6 //
7 
8 #import <Foundation/Foundation.h>
9 #import <UIKit/UIKit.h>
10 
11 #import "UILabel+EnkiUtils.h"
12 #import "UIScreen+EnkiUtils.h"
13 #import "UIImage+EnkiUtils.h"
14 #import "NSString+EnkiUtils.h"
15 #import "UINavigationController+EnkiUtils.h"
16 
17 
89 @interface EnkiUtilities : NSObject
90 {
91 
92 }
93 
95 + (UIColor *)defaultBackgroundColor:(UITableViewCell *)inCell;
97 + (float) pixelsForRetina:(float) pixels;
101 +(BOOL) AlmostEqualRelative:(float) A and:(float)B;
102 
110 + (void)keyboardWasShown:(NSNotification*)aNotification
111  view:(UIViewController *) view
112  scrollView:(UITableView *)scrollView
113  activeField:(UIView *) activeField
114  activeCell:(UITableViewCell *) activeCell;
115 
116 
117 @end
118