我想在内存不足的情况下测试我的应用程序。以前我的方法是运行
[NSTimer scheduledTimerWithTimeInterval:2.0 target:[UIApplication sharedApplication] selector:@selector(_performMemoryWarning) userInfo:nil repeats:YES];
但它不再起作用了。通过工作,我的意思是没有调用didReceiveMemoryWarning 。我也试过:
[[NSNotificationCenter defaultCenter] postNotificationName:UIApplicationDidReceiveMemoryWarningNotification object: [UIApplication sharedApplication]];
[[NSNotificationCenter defaultCenter] postNotificationName:UIApplicationDidReceiveMemoryWarningNotification object: nil];
[[UIApplication sharedApplication] _performMemoryWarning];
但上述方法似乎都不起作用。
任何想法,将不胜感激