[IOS] - IOS Timer 아이폰 타이머 사용법
IOS ( Object-C ) 2014. 9. 3. 17:11NSTimer *_timer;
- (void) setTimer {
NSTimer *timer = [NSTimer scheduledTimerWithTimeInterval:5
target:self
selector:@selector(startTimer:)
userInfo:nil
repeats:YES];
_timer = timer;
}
- (void) startTimer : (NSTimer *) timer {
[chatMessageController getMessageData];
}
- (void) stopTimer {
if( _timer != NULL ) {
[_timer invalidate];
_timer = NULL;
}
}
'IOS ( Object-C )' 카테고리의 다른 글
[IOS] - IOS 문자 보내기 Activity Intent, MFMessageComposeViewController (0) | 2014.09.11 |
---|---|
[IOS] - IOS 문자열 자르기 substringWithRange (0) | 2014.09.11 |
[IOS] - IOS 숫자 3자리 콤마찍기 (0) | 2014.09.02 |
[IOS] - IOS UIView Overflow Hidden ( Method clipsToBounds ) (0) | 2014.08.27 |
[IOS / Object-C] - IOS 버튼 그라데이션, UIButton Gradation (0) | 2014.08.09 |