I know i can simulate a memory warning on the simulator by selecting ‘Simulate Memory Warning’ from the drop down menu of the iPhone Simulator. I can even make a hot key for that.
But this is not what I’d like to achieve. I’d like to do that from the code by simply, lets say doing it every 5 seconds. Is that possible?
It is pretty easy actually, however it relies on an undocumented api call, so dont ship your app with it (even if it is in a inaccessible code path). All you have to do is use
[[UIApplication sharedApplication] _performMemoryWarning];.This method will have the app’s
UIApplicationobject post theUIApplicationDidReceiveMemoryWarningNotificationand call theapplicationDidReceiveMemoryWarning:method on the App Delegate and allUIViewControllers.