1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| //
| // UIImage+FileName.h
| // iOS-Categories (https://github.com/shaojiankui/iOS-Categories)
| //
| // Created by Jakey on 14/12/15.
| // Copyright (c) 2014年 www.skyfox.org. All rights reserved.
| //
|
| #import <UIKit/UIKit.h>
|
| @interface UIImage (FileName)
| /**
| * @brief 根据bundle中的文件名读取图片
| *
| * @param name 图片名
| *
| * @return 无缓存的图片
| */
| + (UIImage *)imageWithFileName:(NSString *)name;
|
| @end
|
|