// 타이머 생성 NSTimer *countTimer = [NSTimer scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(updateTimer) userInfo:nil repeats:YES]; -(void)updateTimer { // 실행할 내용 }