0

如何相对于 NSTimer 每秒减少分数(例如问题 1:有 10 分)?我已经减少到这一点,直到 15 秒。

提前致谢。

4

1 回答 1

2

把它放在你的界面中

@interface ViewController : UIViewController {
    NSTimer *timer;
    int seconds;
}
@property(nonatomic, strong) NSTimer *timer;

这在您需要它的实施中

- (void)viewDidLoad
{
    [super viewDidLoad];
    self.timer = [NSTimer scheduledTimerWithTimeInterval:1 target:self selector:@selector(timerTick:) userInfo:nil repeats:YES];
    seconds = 1;    
}

- (void)timerTick:(id)sender{
    NSLog(@"%d",seconds);
    if (seconds == 15) {
        [self.timer invalidate];
    }
    seconds++;
}
于 2012-12-08T04:57:24.077 回答