Tcacenco Daniel
Tcacenco Daniel

Reputation: 445

Add and decrease time with UIButton to Timer

Hello everyone i have a question how i can add and decrease time with UIButton to timer for example if i will have button with minus and plus and time at timer.

Thank you.

Upvotes: 3

Views: 134

Answers (2)

BoilingLime
BoilingLime

Reputation: 2267

-(void)viewDidLoad{
  UIButton *buttonPlus = [UIButton buttonWithType:UIButtonTypeRoundedRect];
  UIButton *buttonMinus = [UIButton buttonWithType:UIButtonTypeRoundedRect];

 [buttonPlus addTarget:self action:@selector(addTime) forControlEvents:UIControlEventTouchUpInside];
 [buttonMinus addTarget:self action:@selector(removeTime) forControlEvents:UIControlEventTouchUpInside];

 [self.view addSubview:buttonMinus];
 [self.view addSubview:buttonPlus];

}

-(void) addTime {
    [yourTimer setFireDate:[[yourTimer fireDate] dateByAddingTimeInterval:secondsToAdd]];
}

-(void) removeTime {
    [yourTimer setFireDate:[[yourTimer fireDate] dateByAddingTimeInterval:-secondsToAdd]];
}

Upvotes: 2

cris
cris

Reputation: 333

you could add time to a NSTimer using this:

[yourTimer setFireDate:[[yourTimer fireDate] dateByAddingTimeInterval:secondsToAdd]];

You could decrease time to a NSTimer using:

[yourTimer setFireDate:[[yourTimer fireDate] dateByAddingTimeInterval:-secondsToDecrease]];

Hope this helps!

Upvotes: 2

Related Questions