Ian Vink
Ian Vink

Reputation: 68750

Monotouch Read how much RAM is left on an iPad

Using Monotouch, or Objective-C, how do I tell how much RAM is left on an iPad?

Upvotes: 2

Views: 595

Answers (1)

Tiago
Tiago

Reputation: 934

As far as I know there is no way to get the amount of RAM available.

You can handle low memory warnings by subscribing to an event.

In your "Main.cs"

 public override void ReceiveMemoryWarning(UIApplication application)
 {
   // Do what you want to free memory
 }

Not sure if this helps but given the lack of answers it may prove helpful.

Upvotes: 2

Related Questions