6 lines
192 B
Objective-C
6 lines
192 B
Objective-C
#import <UIKit/UIKit.h>
|
|
|
|
@interface QTMIcon : NSObject
|
|
+ (UIImage *)imageWithName:(NSString *)name color:(UIColor *)color;
|
|
+ (UIImage *)tintImage:(UIImage *)image color:(UIColor *)color;
|
|
@end
|