[NSDate distantFuture];

먼미래에...

최대치의 느낌으로 쓰자.


http://qiita.com/happy_ryo/items/db116859f105d8a2e178

Posted by tenn
,


어떤 이벤트/처리를 기다릴때,

sleep하면 처리자체가 멈추므로.

현재의 메인스레드 이외에는 멈추면 안됨.


그럴때, while문 사이에..


[[NSRunLoop currentRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate distantFuture]];





Posted by tenn
,

[objc] status bar

iPhone 2014. 1. 3. 16:48


스테이터스바 표시


if ([self respondsToSelector:@selector(setNeedsStatusBarAppearanceUpdate)]) {

    // iOS 7

    [self performSelector:@selector(setNeedsStatusBarAppearanceUpdate)];

} else {

    // iOS 6

    [[UIApplication sharedApplication] setStatusBarHidden:YES withAnimation:UIStatusBarAnimationSlide];

}


- (BOOL)prefersStatusBarHidden {

    return YES;

}



http://stackoverflow.com/questions/12661031/how-to-hide-a-status-bar-in-ios






스테이터스바 텍스트 컬러


 [self performSelector:@selector(setNeedsStatusBarAppearanceUpdate)];



-(UIStatusBarStyle)preferredStatusBarStyle{ 

    return UIStatusBarStyleLightContent; 

}


http://stackoverflow.com/questions/17678881/how-to-change-status-bar-text-color-in-ios-7

Posted by tenn
,