ios - UIImageView动画后如何清理内存
<p><p>这是我的代码:
标题:</p>
<pre><code>#import <UIKit/UIKit.h>
@interface ViewController : UIViewController {
UIImageView *imageView;
NSMutableArray *arrayWithImages;
}
- (IBAction)startAnimation:(id)sender;
- (IBAction)cleanMemory:(id)sender;
@end
</code></pre>
<p>实现:</p>
<pre><code>#import "ViewController.h"
@implementation ViewController
......
- (IBAction)startAnimation:(id)sender {
imageView = [ initWithFrame:CGRectMake(0, 0, 768, 1024)];
arrayWithImages = [ initWithObjects:
,
,
,
,
,
,
,
,nil];
imageView.animationImages = arrayWithImages;
imageView.animationDuration = 3;
imageView.animationRepeatCount = 1;
;
;
}
- (IBAction)cleanMemory:(id)sender {
;
;
arrayWithImages= nil;
;
;
imageView = nil;
}
@end
</code></pre>
<p>我有 <code>ViewController</code> 和它的 <code>view</code> 有两个按钮。第一个带有 <code>startAnimation</code>Action 的按钮,它创建 <code>UIImageView</code> 、 <code>NSMutableArray</code> 并在其上启动动画。第二个带有 <code>cleanMemory</code>Action 的按钮,用于清除我在 <code>startAnimation</code> 中创建的所有内容。
当我用 <code>Activity Monitor</code> 仪器启动 <code>Profile</code> 时,当我按下 <code>startAnimation</code> 按钮时,我的程序有 <code>4 mb Real Mem</code>它更改为 <code>16 mb Real Mem</code> 并且在动画之后我按下 <code>cleanMemory</code> 按钮,但它具有相同的 <code>16 mb Real Mem</code>...为什么?我不会将我的内存清理为起始值(4 mb Real Mem)。请问,你能解释一下我哪里有问题吗?</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p><code>UIImage imageNamed:</code> 缓存图像并按照自己的时间表释放内存。如果你不想缓存,那就是完全控制内存然后直接加载图像,而不是 <code>UIImage imageNamed:</code>。</p>
<p>来自 Apple 文档:</p>
<blockquote>
<p>This method looks in the system caches for an image object with the
specified name and returns that object if it exists. If a matching
image object is not already in the cache, this method loads the image
data from the specified file, caches it, and then returns the
resulting object.</p>
</blockquote>
<p>你可以使用</p>
<pre><code>+ (UIImage *)imageWithContentsOfFile:(NSString *)path
</code></pre>
<p>直接加载图片。</p>
<p>来自 Apple 文档:</p>
<blockquote>
<p>This method does not cache the image object.</p>
</blockquote></p>
<p style="font-size: 20px;">关于ios - UIImageView动画后如何清理内存,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/8947389/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/8947389/
</a>
</p>
页:
[1]