// // FLEXUtility.h // Flipboard // // Created by Ryan Olson on 4/18/14. // Copyright (c) 2014 Flipboard. All rights reserved. // #import #import @interface FLEXUtility : NSObject + (UIColor *)consistentRandomColorForObject:(id)object; + (NSString *)descriptionForView:(UIView *)view includingFrame:(BOOL)includeFrame; + (NSString *)stringForCGRect:(CGRect)rect; + (UIViewController *)viewControllerForView:(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; + (NSUInteger)infoPlistSupportedInterfaceOrientationsMask; + (NSString *)searchBarPlaceholderText; @end