(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:泄漏?
基础教程推荐
- Android:对话框关闭而不调用关闭 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01