UIImage *image = [UIImage imagenamed:@"background.jpg"];self.backgroundImageVIEw = [[UIImageVIEw alloc] initWithImage:image];[self.vIEw addSubvIEw:self.backgroundImageVIEw];
如果没有办法减少这个图像使用的内存,有没有办法强制它在我想要它时解除分配?我正在使用ARC.
解决方法 正如@rckoenes所说不要显示高文件大小的图像.
您需要在显示图像之前调整图像大小.
UIImage *image = [UIImage imagenamed:@"background.jpg"];self.backgroundImageVIEw =[self imageWithImage:display scaledToSize:CGSizeMake(20,20)];//Give your CGSize of the UIImageVIEw.[self.vIEw addSubvIEw:self.backgroundImageVIEw];-(UIImage *)imageWithImage:(UIImage *)image scaledToSize:(CGSize)newSize { //UIGraphicsBeginImageContext(newSize); // In next line,pass 0.0 to use the current device's pixel scaling factor (and thus account for Retina resolution). // Pass 1.0 to force exact pixel size. UIGraphicsBeginImageContextWithOptions(newSize,NO,0.0); [image drawInRect:CGRectMake(0,newSize.wIDth,newSize.height)]; UIImage *newImage = UIGraphicsGetimageFromCurrentimageContext(); UIGraphicsEndImageContext(); return newImage;}总结
以上是内存溢出为你收集整理的ios – 为什么我的UIImage占用了这么多内存?全部内容,希望文章能够帮你解决ios – 为什么我的UIImage占用了这么多内存?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)