| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- //
- // FLEXUtility.h
- // Flipboard
- //
- // Created by Ryan Olson on 4/18/14.
- // Copyright (c) 2014 Flipboard. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import <UIKit/UIKit.h>
- #import <objc/runtime.h>
- #define FLEXFloor(x) (floor([[UIScreen mainScreen] scale] * (x)) / [[UIScreen mainScreen] scale])
- @interface FLEXUtility : NSObject
- + (UIColor *)consistentRandomColorForObject:(id)object;
- + (NSString *)descriptionForView:(UIView *)view includingFrame:(BOOL)includeFrame;
- + (NSString *)stringForCGRect:(CGRect)rect;
- + (UIViewController *)viewControllerForView:(UIView *)view;
- + (UIViewController *)viewControllerForAncestralView:(UIView *)view;
- + (NSString *)detailDescriptionForView:(UIView *)view;
- + (UIImage *)circularImageWithColor:(UIColor *)color radius:(CGFloat)radius;
- + (UIColor *)scrollViewGrayColor;
- + (UIColor *)hierarchyIndentPatternColor;
- + (NSString *)applicationImageName;
- + (NSString *)applicationName;
- + (NSString *)safeDescriptionForObject:(id)object;
- + (UIFont *)defaultFontOfSize:(CGFloat)size;
- + (UIFont *)defaultTableViewCellLabelFont;
- + (NSString *)stringByEscapingHTMLEntitiesInString:(NSString *)originalString;
- + (UIInterfaceOrientationMask)infoPlistSupportedInterfaceOrientationsMask;
- + (NSString *)searchBarPlaceholderText;
- + (BOOL)isImagePathExtension:(NSString *)extension;
- + (UIImage *)thumbnailedImageWithMaxPixelDimension:(NSInteger)dimension fromImageData:(NSData *)data;
- + (NSString *)stringFromRequestDuration:(NSTimeInterval)duration;
- + (NSString *)statusCodeStringFromURLResponse:(NSURLResponse *)response;
- + (NSDictionary *)dictionaryFromQuery:(NSString *)query;
- + (NSString *)prettyJSONStringFromData:(NSData *)data;
- + (BOOL)isValidJSONData:(NSData *)data;
- + (NSData *)inflatedDataFromCompressedData:(NSData *)compressedData;
- + (NSArray *)allWindows;
- // Swizzling utilities
- + (SEL)swizzledSelectorForSelector:(SEL)selector;
- + (BOOL)instanceRespondsButDoesNotImplementSelector:(SEL)selector class:(Class)cls;
- + (void)replaceImplementationOfKnownSelector:(SEL)originalSelector onClass:(Class)class withBlock:(id)block swizzledSelector:(SEL)swizzledSelector;
- + (void)replaceImplementationOfSelector:(SEL)selector withSelector:(SEL)swizzledSelector forClass:(Class)cls withMethodDescription:(struct objc_method_description)methodDescription implementationBlock:(id)implementationBlock undefinedBlock:(id)undefinedBlock;
- @end
|