如何从情节提要中的UIButton执行自定义片段(模式片段)



我想通过源场景中的按钮分割目标场景。我还想控制视图控制器之间的过渡动画(我想从右到左设置两个视图的动画)。有可能通过替换段做到这一点吗?我尝试了替换segue和推送segue,但segue没有发生任何建议我应该如何进行?谢谢

我发现replace segue和push segue具有误导性,因为replace似乎可用于主细节控制器,push seue仅用于导航控制器。在这种情况下,我需要实现一个自定义segue。您需要对UIStoryboardSegue进行子类化,并覆盖perform segue。

这是我的代码示例:

-(void)perform{
    UIView *sourceView = [[self sourceViewController] view];
    UIView *destinationView = [[self destinationViewController] view];      
    UIImageView *sourceImageView;
    sourceImageView = [[UIImageView alloc] 
                       initWithImage:[sourceView pw_imageSnapshot]];
    // force the destination to be in landscape before screenshot
    destinationView.frame = CGRectMake(0, 0, 1024, 748);
    CGRect originalFrame = destinationView.frame;
    CGRect offsetFrame = CGRectOffset(originalFrame, originalFrame.size.width, 0);

    UIImageView *destinationImageView;
    destinationImageView = [[UIImageView alloc] 
                            initWithImage:[destinationView pw_imageSnapshot]];
    destinationImageView.frame = offsetFrame;  
    [self.sourceViewController presentModalViewController:self.destinationViewController animated:NO];
    [destinationView addSubview:sourceImageView];                        
    [destinationView addSubview:destinationImageView]; 
    void (^animations)(void) = ^ {                                     
        [destinationImageView setFrame:originalFrame];
    };
    void (^completion)(BOOL) = ^(BOOL finished) {                       
        if (finished) {
            [sourceImageView removeFromSuperview];
            [destinationImageView removeFromSuperview];
        }
    };
    [UIView animateWithDuration:kAnimationDuration delay:.0 options:UIViewAnimationOptionCurveEaseOut animations:animations completion:completion];
 }

其主要思想是创建源和目的地场景的屏幕截图视图;将它们添加到目标场景视图,控制这两个视图的动画,调用sourceviewController上的presentModalViewController函数,并在完成动画后删除这两个屏幕截图视图。

可以在本链接的第15章中找到一个实现屏幕截图实用程序功能的示例:http://learnipadprogramming.com/source-code/

相关内容

  • 没有找到相关文章

最新更新