0

アプリで 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を使用しています。

4

2 に答える 2

4

popToRootViewControllerAnimated の呼び出し後に UIViewController が解放されないコード (ARC を使用) で同じ問題が発生していました。

私のエラーの理由は、UIViewController の NSTimer が原因でした。dealloc でタイマーを無効にしようとしましたが、NSTimer が target:self を使用していたため (つまり、UIViewController へのポインターを保持していたため)、dealloc が呼び出されませんでした。

この問題を解決するために、viewWillDisappear のタイマーを無効にしました。

于 2013-08-29T03:26:14.797 に答える
1

そのため、必要な場合を除き、iOS はメモリを解放していないようです。大量のメモリを割り当てるために、さらにコードを追加しました。ビュー コントローラがポップされている間、メモリは決して解放されませんでした。しかし、didReceiveMemorywarning が呼び出されたとき、実際にはメモリが返されました。この演習で学んだもう 1 つのことは、Apple のチュートリアルhereから、アクティブなウィンドウではないときにビューを解放することです。

- (void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];
    if ([self.view window] == nil)
        self.view = nil;
}
于 2013-08-24T19:49:21.900 に答える