UI中获取图片的三种方式

时间:2022-01-12 07:22:00


第一种:是把图片加载到内存中,适用于一些小的图片

UIImage*image = [UIImageimageNamed:@"imageName.png"];//如果图片的格式是png,则后缀名可以省略,其他格式都不能省略后缀名


第二种:是读取一些比较大的图片,占用较大的内存,需要及时读取,及时释放的

NSString *imagePath = [[NSBundlemainBundle]pathForResource:@"262"ofType:@"jpeg"];


第三种:

UIImage *image = [UIImageimageWithContentsOfFile:imagePath];