应用程序将输入前台通知和内存

时间:2011-04-13 04:55:41

标签: memory-management memory-leaks background-foreground

我在我的UIApplicationWillEnterForegroundNotification函数中将我的视图控制器添加为viewDidLoad的监听器(正如此前的问题所建议的那样):

if(&UIApplicationWillEnterForegroundNotification != nil)
    {
        [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(myFunc) name:UIApplicationWillEnterForegroundNotification object:nil];
    }
    }

问题在于,当通过Instruments调试应用程序时,这行代码看起来非常耗费内存。有关为何以及如何使其更有效的任何想法?

0 个答案:

没有答案