0

我正在使用以下内容打开故事板视图:

    GroupProximity *proximity = [self.storyboard instantiateViewControllerWithIdentifier:@"groupproximity"];

     [self.navigationController pushViewController:proximity animated:YES];

但是,当我使用顶栏上的后退按钮时,似乎活动并未停止。按下后退按钮时如何卸载情节提要视图?

4

1 回答 1

0

实施viewWillDisappear:。在这里,您使计时器无效,使其不复存在。

有关与 NSTimer 相关的特殊生命周期/内存问题的更多信息,请参阅我书中的讨论:

http://www.aeth.com/iOSBook/ch12.html#_unusual_memory_management_situations

于 2013-04-01T02:08:07.697 回答