非缓存方式:
NSString *str = [[NSBundle mainBundle] pathForResource:@"..." ofType:nil];
UIImage *img = [UIImage imageWithContentsOfFile:str];
缓存方式:
UIImage *img = [UIImage imageNamed:@"..."];
缓存方式会导致加载进的图片会在内存中缓存,以至于内存占用越来越大。
非缓存方式:
NSString *str = [[NSBundle mainBundle] pathForResource:@"..." ofType:nil];
UIImage *img = [UIImage imageWithContentsOfFile:str];
缓存方式:
UIImage *img = [UIImage imageNamed:@"..."];
缓存方式会导致加载进的图片会在内存中缓存,以至于内存占用越来越大。