有缓存
UIImage *image = [UIImage imageNamed:@"a.png"];
无缓存
NSString *path = [[NSBundle mainBundle] pathForResoure:@"a.png" ofType:nil];
UIImage *image = [UIImage imageWithContentsOfFile:path];