-info.plist 에 View controller-based status bar appearance를 NO로 추가
AppDelegate의 didFinishLaunchingWithOptions에 아래 코드 추가 (해당코드는 검은색 배경으로 되어있으니 필요에 따라서 변경하면 됩니다.)
[self.window setBackgroundColor:[UIColor blackColor]];
[[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleBlackOpaque];
ViewController 마다 오버라이딩 함수 추가
- (void)viewWillLayoutSubviews {
if ([[UIDevice currentDevice].systemVersion floatValue] >= 7.0) {
if([[UIApplication sharedApplication] statusBarOrientation] == UIDeviceOrientationPortrait
|| [[UIApplication sharedApplication] statusBarOrientation] == UIDeviceOrientationPortraitUpsideDown) {
self.view.frame = [[UIScreen mainScreen] applicationFrame];
}
else {
CGRect rect = [[UIScreen mainScreen] applicationFrame];
self.view.frame = CGRectMake(0, rect.origin.y + 20, rect.size.height, rect.size.width);
}
}
}
- (UIStatusBarStyle)preferredStatusBarStyle
{
return UIStatusBarStyleLightContent;
}
실행하면 예전과 같은 검은 상태바를 볼 수 있습니다.
'iPhone' 카테고리의 다른 글
ios 카테고리(category) (0) | 2015.01.20 |
---|---|
키보드 위에 닫기 버튼 넣기 (0) | 2014.12.30 |
ios 화면 회전상태 확인 코드, os 버전 확인 코드 (0) | 2014.09.24 |
ios 배포버전 로그(NSLog) 숨기기 (0) | 2013.08.30 |
ios UITableView에서 Cell에 롱터치이벤트(UILongPressGestureRecognizer)를 주었을 때 몇 번째 Cell의 index값을 가져오는 방법 (0) | 2013.07.18 |