我在我的UIApplicationWillEnterForegroundNotification
函数中将我的视图控制器添加为viewDidLoad
的监听器(正如此前的问题所建议的那样):
if(&UIApplicationWillEnterForegroundNotification != nil)
{
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(myFunc) name:UIApplicationWillEnterForegroundNotification object:nil];
}
}
问题在于,当通过Instruments调试应用程序时,这行代码看起来非常耗费内存。有关为何以及如何使其更有效的任何想法?