'메서드 실행'에 해당되는 글 1건

  1. 2014.07.08 [IOS] - IOS Method Delay, IOS setTimeOut 매서드 실행 딜레이

[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];

}

반응형
: