萤石云 iOSSDK,移植跨平台相关工程
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
//
//  UIImage+DDKit.h
//  DDKit
//
//  Created by DeJohn Dong on 14-12-21.
//  Copyright (c) 2014年 DDKit. All rights reserved.
//
 
#import <UIKit/UIKit.h>
 
@interface UIImage (DDKit)
 
/**
 *  Create a pure color image only use the code
 *
 *  @param size  Size of the image
 *  @param color Pure color of the image
 *
 *  @return created image 
 */
+ (UIImage *)dd_createImageWithCGSize:(CGSize)size color:(UIColor *)color;
 
 
+ (UIImage *)dd_navigationBarBackButton;
 
@end