开发者

iOS 4.3: How to handle the logging message: "Received memory warning. Level=1"?

开发者 https://www.devze.com 2023-03-08 07:20 出处:网络
I have created a little app for my iPhone. When I run it on my device the output console sometimes logs the message

I have created a little app for my iPhone. When I run it on my device the output console sometimes logs the message

Received memory warning. Level=1 Memory-Warnung

Well, I guess this might be perhaps due to some unreleased memory, but I'm not sure about that. So my question is: Is there a 开发者_运维知识库possibilty to track down where this message comes from?

Are there tools to analyze my program so that I can find out why this message is displayed?


Use Instruments (Product menu -> Profile) and test for Leaks. If leaks are detected, get rid of them, see if you get more memory warnings. If yes, test Allocations, see what's using memory the most and try to optimize memory usage.

0

精彩评论

暂无评论...
验证码 换一张
取 消