1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| //
| // UIImageView+YTH.h
| // PapayaPlayerDaqo
| //
| // Created by 味口 on 15-6-24.
| // Copyright (c) 2015年 wgj. All rights reserved.
| //
|
| #import <UIKit/UIKit.h>
|
| @interface UIImageView (YTH)
|
| /**
| * 设置网络图片
| */
| - (void)setYthImageWithURL:(NSString *)urlStr placeholderImage:(UIImage *)placeholder;
|
| @end
|
|