//有缓存
UIImage * image = [UIImage imageNamed:@""];
//无缓存 播放帧动画是使用无缓存的方式
NSString * url = [[NSBundle mainBundle]pathForResource:@"" ofType:@""];
UIImage * image1 = [[UIImage alloc]initWithContentsOfFile:url];
//有缓存
UIImage * image = [UIImage imageNamed:@""];
//无缓存 播放帧动画是使用无缓存的方式
NSString * url = [[NSBundle mainBundle]pathForResource:@"" ofType:@""];
UIImage * image1 = [[UIImage alloc]initWithContentsOfFile:url];