Hide Status Bar from iPhone application

前端 未结 7 693
太阳男子
太阳男子 2020-12-18 14:07

I want my app to not have the status bar at all! I have tried using the .plst

I have tried everything in here Status bar won't disappear and also in here How to

7条回答
  •  青春惊慌失措
    2020-12-18 14:18

    //viewDidload
    if ([self respondsToSelector:@selector(setNeedsStatusBarAppearanceUpdate)]) {
    // iOS 7
    [self prefersStatusBarHidden];
    [self performSelector:@selector(setNeedsStatusBarAppearanceUpdate)];
    } else {
    // iOS 6
    [[UIApplication sharedApplication] setStatusBarHidden:YES withAnimation:UIStatusBarAnimationSlide];
    }
    
    
    // Add this Method
    - (BOOL)prefersStatusBarHidden
    {
    return YES;
    }
    

提交回复
热议问题