Advertisement
Guest User

Untitled

a guest
Apr 24th, 2018
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. UIVisualEffect *blurEffect;
  2. blurEffect = [UIBlurEffect effectWithStyle:UIBlurEffectStyleExtraLight];
  3.  
  4. UIVisualEffectView *visualEffectView;
  5. visualEffectView = [[UIVisualEffectView alloc] initWithEffect:blurEffect];
  6.  
  7. visualEffectView.frame = self.view.bounds;
  8. [self.view addSubview:visualEffectView];
  9.  
  10. CGFloat statusBarHeight = [UIApplication sharedApplication].statusBarFrame.size.height;
  11.  
  12. UINavigationBar *navBar = [[UINavigationBar alloc] initWithFrame:CGRectMake(0, statusBarHeight, self.view.frame.size.width, 64)];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement