我想知道当这个视图显示在屏幕上时我会在我的 CustomView 类中得到什么通知。
CustomView *customView = [[CustomView alloc] init];
[self.view addSubview:customView];
NewViewController *newController = [[NewViewController alloc] init];
[self.navigationController pushViewController:newController animated:YES];
经过一些工作,我弹出了这个 viewController。
[self.navigationController popViewControllerAnimated:YES];
我想知道当该视图再次出现在屏幕上时,将调用 CustomView 类中的什么方法。
实际上,我在那个 CustomView 中有一个无限循环动画,并且在推送到 nextController 时,我必须停止那个动画循环,回来后我需要重新启动它。