(iphone) UIImageView setImage: leaks?((iphone) UIImageView setImage:泄漏?)
问题描述
我正在通过 [self setImage: newImage] 更改 UIImageview 的图像;
i'm changing image of UIImageview by [self setImage: newImage];
看起来每次我对 newImage 执行此操作时,似乎都没有发布之前的图像.
替换 UIImageView 的图像的正确方法是什么?
Looks like every time I does that with newImage, prior image doesn't seem to be released.
What's the correct way to replace image of UIImageView?
谢谢
推荐答案
UIImageView setImage:
永远不会泄漏,除非你传递的图像没有被释放.
UIImageView setImage:
never leaks, unless the image you are passing doesn't get released.
如果您将自动发布的图像分配给图像视图,您的代码不会泄漏,如下所示.
Your code wont leak, if your are assigning an autoreleased image to the image view, something like the following.
UIImage *newImage = [UIImage imageNamed:@"sampleImage"];
[yourImageView setImage:newImage];
但是,如果您在某处分配图像,则必须手动释放它.
But, if you are allocating the image somewhere, you have to release it manually.
这篇关于(iphone) UIImageView setImage:泄漏?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:(iphone) UIImageView setImage:泄漏?


基础教程推荐
- LocationClient 与 LocationManager 2022-01-01
- “让"到底是怎么回事?关键字在 Swift 中的作用? 2022-01-01
- 如何使 UINavigationBar 背景透明? 2022-01-01
- 在 iOS 上默认是 char 签名还是 unsigned? 2022-01-01
- 如何使用 YouTube API V3? 2022-01-01
- Android文本颜色不会改变颜色 2022-01-01
- :hover 状态不会在 iOS 上结束 2022-01-01
- Android ViewPager:在 ViewPager 中更新屏幕外但缓存的片段 2022-01-01
- 固定小数的Android Money Input 2022-01-01
- 使用 Ryzen 处理器同时运行 WSL2 和 Android Studio 2022-01-01