我想通过源场景中存在的按钮来分隔目标场景。我还想控制视图控制器之间的过渡动画(我想从右到左为 2 个视图设置动画)。是否可以通过替换segue来做到这一点?我尝试了replace segue和push segue,但是segue没有发生任何建议我应该如何在那里进行?谢谢!
问问题
7917 次
1 回答
8
我发现 replace segue 和 push segue 具有误导性,因为 replace 似乎可用于主细节控制器,而 push segue 仅可用于导航控制器。在这种情况下,我需要实现自定义 segue。您需要继承 UIStoryboardSegue 并覆盖执行 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/
于 2012-03-01T00:00:55.253 回答