アプリで navigationController を使用しています。View Controller を 3 回プッシュ アンド ポップすると、メモリ不足のためにアプリがクラッシュします。これは以下の私のコードです。
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
HomePageVC *homePage = [[ViewController alloc] homePage = [[ViewController alloc] initWithNibName:@"MainView-iPad" bundle:nil];
navigationController = [[UINavigationController alloc] initWithRootViewController:homePage];
self.window.rootViewController = navigationController;
[self.window makeKeyAndVisible];
return YES;
}
ユーザーがボタンを押すと、別のビュー コントローラーに送信します。
-(IBAction)showMap:(id)sender
{
MapViewController *mapViewController = Nil;
mapViewController = [[MapViewController alloc] initWithNibName:@"MapView-iPad" bundle:nil];
AppDelegate *appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
[appDelegate.navigationController pushViewController:mapViewController animated:YES];
}
彼が rootView Controller に戻りたいとき、私はそうします
-(IBAction)goBack:(id)sender
{
AppDelegate *appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
[appDelegate.navigationController popToRootViewControllerAnimated:YES];
}
これを数回実行した後、徐々に didReceiveLowMemory が呼び出され、アプリがクラッシュします。
さらにデバッグするために、メモリ使用量をループで出力しました。
-(void) report_memory {
struct task_basic_info info;
mach_msg_type_number_t sizeM = sizeof(info);
kern_return_t kerr = task_info(mach_task_self(),
TASK_BASIC_INFO,
(task_info_t)&info,
&sizeM);
if( kerr == KERN_SUCCESS ) {
NSLog(@"Memory usage: %.4lf MB", info.resident_size/1000000.0);
} else {
NSLog(@"Error with task_info(): %s", mach_error_string(kerr));
}
}
出力は
When the app Launches : Memory usage: 137.8263 MB
After showMap First Time : Memory usage: 206.2172 MB
Gone Back Home : Memory usage: 223.6580 MB ==> MapVC didn't release
After showMap Second Time: Memory usage: 227.2172 MB
Press Go Back Home : Memory usage: 250.2172 MB ==> MapVC didn't release
After showMap Third Time : App Crashes
私のlowMemoryは次のように書かれています
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
NSLog(@"Got Low Memory From %@",[self class]);
}
さらに驚いたことに、HomePageVC と MapVC の両方からメモリ不足の警告が表示されました。すでに MapVC をうんざりさせている場合、それから lowMemory をどのように受け取りましたか? また、MapVC によって消費されたメモリが解放されなかったのはなぜですか? ARCを使用しています。