在我的应用程序中有两个视图。view1 有一个功能测试
-(void) testing
{
NSLog(@"Testing : %d", (++x));
}
和一个计时器
timer = [NSTimer scheduledTimerWithTimeInterval:1 target:self selector:@selector(testing) userInfo:nil repeats:YES];
我想要的是从 view2 停止并运行这个计时器。怎么做 ?