私のアプリには2つのビューがあります。view1 には機能テストがあります
-(void) testing
{
NSLog(@"Testing : %d", (++x));
}
そしてタイマー
timer = [NSTimer scheduledTimerWithTimeInterval:1 target:self selector:@selector(testing) userInfo:nil repeats:YES];
私が欲しいのは、view2からこのタイマーを停止して実行することです。どうやってするか ?