blob: 428a0c2957ec123148784a9ef7424348175bf9ca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
//
// UIImage_Additions.h
// FlushD
//
// Created by Ronny Fenrich on 12-07-27.
//
//
#import <UIKit/UIKit.h>
@interface UIImage (Additions)
+ (UIImage *)imageFromColor:(UIColor *)color;
+ (UIImage *)imageFromColor:(UIColor *)color width:(CGFloat) width height:(CGFloat) height;
+ (UIImage *)retina4ImageNamed:(NSString *)imageName;
+ (UIImage *)imageWithImage:(UIImage *)image convertToSize:(CGSize)size;
@end
|