1、读取图片的几种方法
/** 读取本地图片 */
#define LOADIMAGE(file,ext) [UIImage imageWithContentsOfFile:[NSBundle mainBundle]pathForResource:file ofType:ext]
/** 定义UIImage对象 */
#define IMAGE(A) [UIImage imageWithContentsOfFile:[NSBundle mainBundle] pathForResource:A ofType:nil]
/** 定义UIImage对象 */
#define ImageNamed(_pointer) [UIImage imageNamed:[UIUtil imageName:_pointer]
/**** 建议使用前两种宏定义,性能高于后者 ****/
原文地址:https://www.cnblogs.com/CH520/p/9311334.html
时间: 2024-10-04 19:03:22