본문 바로가기

iPhone

상단 status bar 색상, 숨기기 변경

코드로 적용 : 시작과 동시에 변경되지는 않는다. 혹시 방법을 아시는분은 뎃글좀 주세요 ㅠㅠ

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions

{

    // 색상 결정 = UIStatusBarStyleBlackOpaque: 검은색, UIStatusBarStyleBlackTranslucent 검은색 투명, UIStatusBarStyleDefault 회색

        [UIApplication sharedApplication].statusBarStyle = UIStatusBarStyleBlackOpaque;

    

    // 히든결정

        [UIApplication sharedApplication].statusBarHidden = YES;

    return YES;

}



프로젝트명-Info.plist 에서 status bar style를 변경하면 된다.  add row하여 Status bar is initially hidden를 추가하면 hidden도 제어가 가능하다.