[IOS] - IOS Method Delay, IOS setTimeOut 매서드 실행 딜레이
IOS ( Object-C ) 2014. 7. 8. 10:15반응형
[self startMethod];
- (void) startMethod {
NSTimeInterval delay = 1.5;
[self performSelector:@selector(showIndicator) withObject:nil afterDelay:delay];
}
- (void) showIndicator {
[MRKN_Function MRKN_ShowLoading:TopWindow];
}
반응형
'IOS ( Object-C )' 카테고리의 다른 글
[IOS] - IOS System Version 정보 구하기, IOS 버전 구하기 (0) | 2014.07.11 |
---|---|
[IOS] - IOS UIAlertView 버튼 이벤트 (0) | 2014.07.08 |
[IOS] - IOS 최상위 Window 객체 가져오기 (0) | 2014.07.08 |
[IOS] - TextField keyboard Show, hide 텍스트필드 키보드 보이기, 숨기기 (0) | 2014.07.01 |
[IOS] - IOS TextField Vertical align middle 텍스트 필드 세로 가운데 정렬 (0) | 2014.07.01 |