2

私は、メインのものからサブクラス化されたUIViewcontroller2つのメイン(vcMain)を持っています。UIViewControllersサブクラス化された両方UIViewcontrollers(vcSub1/vcSub2) は、単に画像といくつかのコントロールを表示するだけです。vcSub1 と vcSub2 が に表示されますUITabBarController。私はこのように実装didReceiveMemoryWarningしました:

vcMain:

- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning]; 

    if ([self isViewLoaded] == NO) {
        // release the model, will be recreated in viewDidLoad
        [_brain release], self.brain = nil; 
    }
}

vcSub1:

- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];    

    if ([self isViewLoaded] == NO) {
        // will be recreated in viewDidLoad, only exists in vcSub1
        [self.zoomBrain release], [self setZoomBrain:nil];

        _button = nil; // autoreleased, created programmatically
    }
}

vcSub2:

- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning]; 

    if ([self isViewLoaded] == NO) {
        // nothing in here (yet)
    }
}

初めてメモリ警告をシミュレートすると、すべてが正常に機能しているようです。

Received simulated memory warning.
-[AppDelegate applicationDidReceiveMemoryWarning:] [Line 81] 
-[vcSub2 didReceiveMemoryWarning] [Line 102] 
-[vcMain didReceiveMemoryWarning] [Line 73] 
-[vcSub2 viewDidUnload] [Line 112] 
-[vcMain viewDidUnload] [Line 65] 
-[vcSub1 didReceiveMemoryWarning] [Line 150] 
-[vcMain didReceiveMemoryWarning] [Line 73] 
-[vcSub1 viewDidUnload] [Line 143] 
-[vcMain viewDidUnload] [Line 65] 

私はこれを問題なく何度でも行うことができます。ただし、タブを切り替えて(したがってビューをリロードして)メモリ警告を再度シミュレートすると、次のようになります。

Received simulated memory warning.
-[AppDelegate applicationDidReceiveMemoryWarning:] [Line 81] 
-[vcSub2 didReceiveMemoryWarning] [Line 102] 
-[vcMain didReceiveMemoryWarning] [Line 73] 
-[vcSub1 didReceiveMemoryWarning] [Line 150] 
-[vcMain didReceiveMemoryWarning] [Line 73] 
-[vcSub1 viewDidUnload] [Line 143] 
-[vcMain viewDidUnload] [Line 65] 
*** -[vcSub1 isViewLoaded]: message sent to deallocated instance 0x614de80

Aninfo malloc-history 0x614de80は、インスタンスが vcSub1 ビューコントローラーであることを示しています。

Alloc: Block address: 0x0614de80 length: 192
Stack - pthread: 0xa0425540 number of frames: 21
    0: 0x93f7f0a3 in malloc_zone_calloc
    1: 0x93f7effa in calloc
    2: 0x154a2d4 in class_createInstance
    3: 0x13165d8 in +[NSObject(NSObject) allocWithZone:]
    4: 0x13163da in +[NSObject(NSObject) alloc]
    5: 0x2bf0 in -[AppDelegate application:didFinishLaunchingWithOptions:] at AppDelegate.m:47
    6: 0x8dec89 in -[UIApplication _callInitializationDelegatesForURL:payload:suspended:]
    7: 0x8e0d88 in -[UIApplication  _runWithURL:payload:launchOrientation:statusBarStyle:statusBarHidden:]
    8: 0x8eb617 in -[UIApplication handleEvent:withNewEvent:]
    9: 0x8e3abf in -[UIApplication sendEvent:]
   10: 0x8e8f2e in _UIApplicationHandleEvent
   11: 0x30b9992 in PurpleEventCallback
   12: 0x13d3944 in __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE1_PERFORM_FUNCTION__
   13: 0x1333cf7 in __CFRunLoopDoSource1
   14: 0x1330f83 in __CFRunLoopRun
   15: 0x1330840 in CFRunLoopRunSpecific
   16: 0x1330761 in CFRunLoopRunInMode
   17: 0x8e07d2 in -[UIApplication _run]
   18: 0x8ecc93 in UIApplicationMain
   19: 0x28f9 in main at main.m:14
   20: 0x2875 in start

vcSub1 ビューコントローラーの割り当てが解除された理由方法を教えてください。

4

1 に答える 1

1

オブジェクトを何度も解放していると思います。プロパティが (retain) であると仮定すると、ここにバグがあります。

[self.zoomBrain release]
[self setZoomBrain:nil];

最初の行は zoomBrain を解放します。

2 行目は zoomBrain を解放し、 nil に設定します。

あなたはそれを 2 回リリースしています - 必要なのは 2 行目だけです。setter メソッド (setZoomBrain:) を使用すると、以前の zoomBrain が自動的に解放されます。

これも同じです:

[_brain release];
self.brain = nil; 

への呼び出しself.brainは別の書き方[self setBrain:nil];です。ここでも、release は 2 回呼び出されます。

それぞれの場合で 2 行目だけが必要です。

self.brain = nil;
于 2011-05-04T12:49:20.067 に答える