반응형
NSTimer *myTImer = [NSTimer timerWithTimeInterval:2.0 target:self selector:@selector(MethodName) userInfo:nil repeats:YES];
NSRunLoop *runner = [NSRunLoop currentRunLoop];
[runner addTimer:reconnectTimer forMode: NSDefaultRunLoopMode];
or
[NSTimer scheduledTimerWithTimeInterval:2.0 target:self selector:@selector(MethodName) userInfo:nil repeats:YES];
* timeWithTimeInterval:target:selector:userInfo:repeats는 타이머를 생성만 함.
* scheduledTimerWithTimeInterval:target:selector:userInfo:repeats는 타이머 생성과 동시에 시작을 함.
반응형
'Objective-c' 카테고리의 다른 글
NSString과 NSMutableString (0) | 2014.04.25 |
---|---|
AFNetworking download progressing (0) | 2014.04.25 |
NSString 문자열 치환 (0) | 2014.04.25 |
코어 애니메이션 튜토리얼 페이지 (Core Animation Tutorial page) (0) | 2014.04.25 |
현재 앱을 사용자 로그인 아이템 등록하기 (0) | 2014.04.20 |
댓글