使用部分卷曲时如何停止和开始动作?我在当前的视图控制器中尝试了这些功能viewWillDisappear
,viewWillAppear
但是当我切换到 settingsViewController 并返回时,它们似乎没有被调用。
我也在我的first VC
TwistmAppDelegate *AppDelegate = [[UIApplication sharedApplication] delegate];
AppDelegate.timer = [NSTimer scheduledTimerWithTimeInterval:30.0
target:self
selector:@selector(resetSpin:)
userInfo:nil
repeats:YES];
这在我的second VC
:
TwistmAppDelegate *AppDelegate = [[UIApplication sharedApplication] delegate];
[AppDelegate.timer invalidate];
但这似乎也不起作用。