iOS NSTimer简单使用

1 计时器添加到NSRunloop

self.timer = [NSTimer scheduledTimerWithTimeInterval:2.0 target:self selector:@selector(nextPage) userInfo:nil repeats:YES];
    //添加到runloop中
   [[NSRunLoop mainRunLoop]addTimer:self.timer forMode:NSRunLoopCommonModes];

你可能感兴趣的:(iOS NSTimer简单使用)