iOS:Help 主视图顶部的模糊屏幕

iOS:Help Blur screen on the top of home view

我的应用程序需要主视图顶部的帮助屏幕 controller.I 已将标签栏控制器作为根视图控制器并添加了导航视图控制器。因此在第一个屏幕的外观上同时出现了标签栏和导航栏连同视图 body.When 我尝试通过 pageviewcontroller 示例放置帮助屏幕,在视图确实加载到第一个屏幕选项卡视图中时,导航栏出现在前面,使页面视图控制器返回。我已经尝试

   [self addChildViewController:walkthrough];
   [self.view addSubview:walkthrough.view];
   [self.tabBarController.view bringSubviewToFront:walkthrough.view];

请帮助如何获取页面视图屏幕front.And是否有任何示例教程请帮助我 Note:Botn 导航栏和标签栏不应该被隐藏

这就是我在应用程序中完成的演练。您可以从此处下载此 FXBlurView 库: https://github.com/nicklockwood/FXBlurView

在我的 .h 文件中

#import "FXBlurView.h"
IBOutlet UIView *viewWalkThrough;
FXBlurView *overlayView;

在我的 .m 文件中

#define SYSTEM_SCREEN_SIZE [[UIScreen mainScreen] bounds].size
#define kProfileWalkthrough  @"ProfileWalkthrough"

if (![[[NSUserDefaults standardUserDefaults] valueForKey:kProfileWalkthrough] boolValue]) {
    [[NSUserDefaults standardUserDefaults] setBool:YES forKey:kProfileWalkthrough];
    [[NSUserDefaults standardUserDefaults] synchronize];

    overlayView = [[FXBlurView alloc] initWithFrame:CGRectMake(0, 0, SYSTEM_SCREEN_SIZE.width, SYSTEM_SCREEN_SIZE.height)];
    [overlayView setDynamic:YES];
    [overlayView setBlurRadius:5.0f];
    [overlayView setBlurEnabled:YES];
    [overlayView setTintColor:[UIColor blackColor]];
    [self.view.window addSubview:overlayView];
    [self displayOverlay:viewWalkThrough aboveView:self.view.window];

    UITapGestureRecognizer *tapGesture = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(closeWalkThrough:)];
    [viewWalkThrough addGestureRecognizer:tapGesture];
}

- (void)closeWalkThrough:(UITapGestureRecognizer *)tapRecognizer {
[overlayView          removeFromSuperview];
[self.viewWalkThrough removeFromSuperview];

}

- (void)displayOverlay:(UIView *)subView aboveView:(UIView *)superView {
subView.translatesAutoresizingMaskIntoConstraints = NO;

[superView addSubview:subView];
[superView addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"H:|[subView]|" options:kNilOptions metrics:nil views:NSDictionaryOfVariableBindings(subView)]];
[superView addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"V:|[subView]|" options:kNilOptions metrics:nil views:NSDictionaryOfVariableBindings(subView)]];

[superView layoutSubviews];

}