How to display iPhone free memory in a UILabel ?
and I would like to ask, how to free up memory using iPhone SDK?
FYI, I'm using iPhone SDK 3.1.2 with xcode 3.2.1 (Mac OS X Snow Leopard).
|
|
How to display iPhone free memory in a UILabel ? and I would like to ask, how to free up memory using iPhone SDK? FYI, I'm using iPhone SDK 3.1.2 with xcode 3.2.1 (Mac OS X Snow Leopard).
|
||
|
|
|
|
There is no direct access to this information in the SDK, and apps are not allowed to mess around with the OS the way you're suggesting. You're in your own little box; Apple expects you to stay there. When you ask questions that include "the system," you are probably outside of your box. That said, there are some tricks you can use. You can allocate increasingly-large blocks of memory until you receive The most effective non-programmatic way to free up memory is to ask the user to reboot. For applications that require substantial memory (generally games), this approach is not unheard of. SBSettings requires jailbreaking and is outside of the SDK. |
||||||
|
|
|
You can free up memory by calling "release" on objects you've allocated after you're done with them. See http://developer.apple.com/mac/library/documentation/Cocoa/Conceptual/MemoryMgmt/MemoryMgmt.html |
||
|