萤石云 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
27
//
//  UIImageView+DDKit.h
//  DDCategory
//
//  Created by DeJohn Dong on 15-3-20.
//  Copyright (c) 2015年 DDKit. All rights reserved.
//
 
#import <UIKit/UIKit.h>
 
@interface UIImageView (DDKit)
 
@end
 
 
@interface UIImageView (DDPlaceholder)
 
/**
 *  Set a web-cache imageView can use an scale placeholder image;
 *
 *  @param url         The web image url
 *  @param placeholder The place holder image can scale
 */
- (void)sd_setImageWithURL:(NSURL *)url
     placeholderImageScale:(UIImage *)placeholder;
 
@end