ビューコントローラーをリスナーとして関数に追加しています(以前の質問で推奨されているように、ここで)UIApplicationWillEnterForegroundNotification
:viewDidLoad
if(&UIApplicationWillEnterForegroundNotification != nil)
{
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(myFunc) name:UIApplicationWillEnterForegroundNotification object:nil];
}
}
問題は、Instruments を介してアプリケーションをデバッグするときに、このコード行が非常にメモリを消費しているように見えることです。より効果的にする理由と方法について何か考えはありますか?