アプリからのすべてのリークを止めるために多くのことを試みました。しかし、サーバーから大量のデータを同期しているときに、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.
}
何か方法はありますか??