提出一个透明的模态UIViewController

时间:2014-08-12 09:28:59

标签: ios uiviewcontroller modalviewcontroller custom-transition

我正在尝试自己创建一个自定义alertView(适用于iOS7 +),但我很难使用alertView演示文稿。

我有一个黑色背景的UIViewController(alpha设置为0.25f),以及一个alertView作为子视图。

当我想显示alertView时,我以模态方式呈现viewController:

-(void) show 
{
    UIWindow* window = [[UIApplication sharedApplication] keyWindow];
    self.modalTransitionStyle = UIModalPresentationCustom;
    self.transitioningDelegate = self;
    [window.rootViewController presentViewController:self animated:YES completion:nil];
}

这是我的动画师对象:

-(NSTimeInterval) transitionDuration:(id<UIViewControllerContextTransitioning>)transitionContext
{
    NSLog(@"%s",__PRETTY_FUNCTION__);
    return 2;
}

-(void) animateTransition:(id<UIViewControllerContextTransitioning>)transitionContext
{
    NSLog(@"%s",__PRETTY_FUNCTION__);

    UIView* toView = [transitionContext viewForKey:UITransitionContextToViewKey];
    toView.alpha = 0;

    UIView* container = [transitionContext containerView];
    [container addSubview:toView];

    [UIView animateWithDuration:[self transitionDuration:transitionContext] animations:^{
        toView.alpha = 0.5;
    } completion:^(BOOL finished) {
        [transitionContext completeTransition:YES];
    }];
}

事情是:模式VC在背景中呈现VC呈现淡出,但是当动画结束时,呈现VC将从背景中移除。

如果我改为调用[transitionContext completeTransition:YES];,那么呈现的VC在后台但是在动画结束时删除了模态VC,所以如果我们发送'NO',我猜上下文会取消演示。

有没有一种方法可以将演示VC保留在后台而不必创建快照并将其设置为模态VC视图的背景?

6 个答案:

答案 0 :(得分:38)

我尝试过这个解决方案,它适用于iOS 7和8:

if ([[UIDevice currentDevice].systemVersion integerValue] >= 8)
{
    //For iOS 8
    presentingViewController.providesPresentationContextTransitionStyle = YES;
    presentingViewController.definesPresentationContext = YES;
    presentedViewController.modalPresentationStyle = UIModalPresentationOverCurrentContext;
}
else
{
    //For iOS 7
    presentingViewController.modalPresentationStyle = UIModalPresentationCurrentContext;
}

注意: 请注意' presentsViewController '和' presentsViewController '之间的区别。

答案 1 :(得分:5)

<强> iOS8上+

对于iOS8 +,您可以使用以下代码段

SecondViewController *secondViewController = [[SecondViewController alloc] init];
secondViewController.modalPresentationStyle = UIModalPresentationOverCurrentContext;           
[self presentViewController:secondViewController animated:YES completion:nil];    

答案 2 :(得分:2)

我的情况可能与您的情况有所不同,但这些信息可能对对话有用。

在故事板中,我将我的segue的演示文稿更改为州&#34; Over Full Screen&#34;它成功了。

答案 3 :(得分:1)

我认为您所看到的是iOS的默认行为。

当呈现为模态视图控制器时,视图控制器不应该是非透明的。 iOS在动画完成时删除了底层视图控制器,以便在呈现的视图控制器占据整个屏幕时加快合成速度。没有理由在屏幕上甚至看不到视图控制器 - 它的视图层次结构可能很复杂。

我认为您唯一的解决方案是进行自定义演示。

备注:我没有测试过这个。但它就是这样的。

/* Create a window to hold the view controller. */
UIWindow *presenterWindow = [[UIWindow alloc] init];

/* Make the window transparent. */
presenterWindow.backgroundColor = [UIColor clearColor];
presenterWindow.opaque = NO;

/* Set the window rootViewController to the view controller you
   want to display as a modal. */
presenterWindow.rootViewController = myModalViewController;

/* Setup animation */
CGRect windowEndFrame = [UIScreen mainScreen].bounds;
CGRect windowStartFrame = windowEndFrame;

/* Adjust the start frame to appear from the bottom of the screen. */
windowStartFrame.origin.y = windowEndFrame.size.height;

/* Set the window start frame. */
presenterWindow.frame = windowStartFrame;

/* Put the window on screen. */
[presenterWindow makeKeyAndVisible];

/* Perform the animation. */
[UIView animateWithDuration:0.5
                      delay:.0
                    options:UIViewAnimationOptionCurveEaseOut
                 animations:^{
                     presenterWindow.frame = windowEndFrame;
                 }
                 completion:^(BOOL finished){
                     /* Your transition end code */
                 }];

然而,这确实使您无法使用UIViewController中的任何呈现视图控制器逻辑构建。完成呈现的视图控制器后,您需要自己计算,然后反转动画并从屏幕中删除UIWindow

答案 4 :(得分:1)

当您呈现或推送它时,ViewController不应该是透明的。您可以尝试将其添加为子视图。并且对于过渡效果,在添加为子视图后立即更改其帧。将其框架设置在可见视图之外的某个位置,然后对其进行动画处理以将框架更改为可见视图。

希望这有帮助。

答案 5 :(得分:1)

供您参考, 我终于将自定义alertView作为“popUp部分”的UIView的子类。 为了显示它,我只是将alertView添加为keyWindow的子视图,并使用约束来居中它,并在其后面放置一个透明的黑色背景视图。

由于它不是控制器,我必须自己管理UI旋转(仅适用于iOS 7,它可以在iOS 8中与UI一起旋转)。