Skip to content

Instantly share code, notes, and snippets.

View ldenoue's full-sized avatar
🏔️

Laurent Denoue ldenoue

🏔️
View GitHub Profile
@ldenoue
ldenoue / gist:1fd2fca6c01c298bbef767d7f1811ec9
Created May 2, 2016 19:16
make opaque status bar even with self.navigationController.hidesBarsOnSwipe = YES
- (void)scrollViewDidScrollToTop:(UIScrollView *)scrollView {
self.navigationController.navigationBarHidden = NO;
}
-(void)opaqueStatusBar:(UIScrollView *)scrollView
{
scrollView.delegate = self;
UIView *statusBarBg = [self.navigationController.view viewWithTag:3000];
if (statusBarBg == nil)
{