我的应用程序是一个基于标签栏的应用程序,其中包括 6 个标签。当我收到内存警告时,所有 5 个视图控制器didReceiveMemoryWarning
方法都被调用,除了 1 个视图控制器。因此,我在该视图控制器中注册了 UIApplicationDidReceiveMemoryWarningNotification,如下所示:
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(didReceiveMemoryWarning)
name:UIApplicationDidReceiveMemoryWarningNotification
object:nil];
但是,不会调用此视图控制器的didReceiveMemoryWarning
方法。我错过了什么吗?