Reputation: 68750
Using Monotouch, or Objective-C, how do I tell how much RAM is left on an iPad?
Upvotes: 2
Views: 595
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