8

我正在尝试UIViewController从右侧显示一个“幻灯片”动画。不像 Push segue,不像 Facebook 应用程序。我希望新的 ViewController 在当前 ViewController 的顶部滑动(而不是将其推开),但只覆盖屏幕的一部分,而另一部分则显示第一个 ViewController。

我尝试过的:我得到的最接近的是通过创建一个自定义segue,如下所示:

- (void)perform
{
    __block UIViewController *src = (UIViewController *) self.sourceViewController;
    __block UIViewController *dst = (UIViewController *) self.destinationViewController;

    CATransition* transition = [CATransition animation];
    transition.duration = .50;
    transition.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut];
    transition.type = kCATransitionMoveIn;
    transition.subtype = kCATransitionFromRight;

    [src.navigationController.view.layer addAnimation:transition forKey:@"SwitchToView1"];
    [src.navigationController pushViewController:dst animated:NO];
}

这实现了我想要的动画,但它涵盖了整个第一个 ViewController。我如何让它停在某个点而不是覆盖整个事情?

我正在使用 Storyboards,这是我第一次尝试任何类型的新动画。

4

3 回答 3

12

您可以尝试在源视图控制器中执行此操作,并更改目标(x 轴)的框架,例如:

- (void) perform {    
    UIViewController *dst = (UIViewController *) self.destinationViewController;

    [dst.view setFrame:CGRectMake(160, 0, YOUR_DST_WIDTH, YOUR_DST_HEIGHT)];

    //your animation stuff...

    [self addChildViewController:dst]; 
    [self.view addSubview:dst.view]; 
    [dst didMoveToParentViewController:self]; 
}

那应该这样做!

如果没有,请告诉我...

更新!:

@CaptJak嘿,对不起,这对你没有用..我编写了以下代码,它在这里没有任何问题..我将它链接到一个按钮点击..试试看,让我知道!(PS:我也添加了动画!)。

ViewController *tlc = [self.storyboard instantiateViewControllerWithIdentifier:@"MainViewController"];
[tlc.view setFrame:CGRectMake(-320, 0, self.view.frame.size.width, self.view.frame.size.height)];

[self addChildViewController:tlc];
[self.view addSubview:tlc.view];
[tlc didMoveToParentViewController:self];

[UIView animateWithDuration:0.3 animations:^{
    [tlc.view setFrame:CGRectMake(-160, 0, self.view.frame.size.width, self.view.frame.size.height)];
}];
于 2013-07-21T17:48:39.100 回答
5

使用 Albara 给出的答案,我还能够创建具有相同动画的 segue。自定义segue如下:

- (void)perform
{
    UIViewController *src = (UIViewController *)self.sourceViewController;
    UIViewController *dst = (UIViewController *)self.destinationViewController;

    [dst.view setFrame:CGRectMake(380, 0, dst.view.frame.size.width, dst.view.frame.size.height)];

    [src addChildViewController:dst];
    [src.view addSubview:dst.view];
    [dst didMoveToParentViewController:src];

    [UIView animateWithDuration:0.5 animations:^{
        [dst.view setFrame:CGRectMake(300, 0, src.view.frame.size.width, src.view.frame.size.height)];
    }];

}

只是重命名的问题,真的。

于 2013-07-22T16:34:42.233 回答
2

我刚刚创建了NDOverlayViewController来做这样的事情。实际上,它可以使用可变偏移量、范围和动画选项从任何边缘覆盖/滑动一个视图控制器。我将它创建为一个实验,但也许它会对某人有所帮助?

于 2014-05-26T14:40:13.063 回答