我已经尝试了很多来阻止我的应用程序的所有泄漏。但是当我从服务器同步大量数据时,我的 ios 应用程序会泄漏内存。
现在我想在间隔一段时间后清理所有泄漏的内存,或者你可以说每当我调用函数时。
-(void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
UIAlertView* alertobj = [[UIAlertView alloc] initWithTitle:@"Info" message:@"This Application facing memory issue." delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil, nil];
[alertobj show];
NSLog(@"memory issue occur");
// Dispose of any resources that can be recreated.
}
有什么办法吗??