我只是尝试放置从 url Request 获取的 6 帧动画 gif 文件,并使用响应创建 nsimage,然后在 NSImageView 中设置 Image ...
我用这个
// Where returnedImage is nsImage I created with response of the connection ..
[myImageView setImage:[response returnedImage]];
我使用此代码更改发生某些用户操作时显示的图像
我观察到分配给程序的内存随着大规模线性增加......并且应用程序可能会崩溃
我确保我的代码没有泄漏......
我不知道为什么会增加,我是否必须释放以前设置的图像
任何想法将不胜感激。