I have one timer firing to go to a void statement. Which has another timer in it. I want to pause the one thats firing or going off then resume it.
movement3 = [NSTimer scheduledTimerWithTimeInterval:0.2 target:self selector:@selector(jone) userInfo:nil repeats:NO];
- (void)jone{
[jumperguy setImage:[UIImage imageNamed:@"jumperguy_a_a3.png"]];
movement4 = [NSTimer scheduledTimerWithTimeInterval:0.2 target:self selector:@selector(jtwo) userInfo:nil repeats:NO];
}