| 123456789101112131415161718192021222324252627282930 |
- //
- // 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>
- @interface FLEXUtility : NSObject
- + (UIColor *)consistentRandomColorForObject:(id)object;
- + (NSString *)descriptionForView:(UIView *)view includingFrame:(BOOL)includeFrame;
- + (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
|