iOS:“单向”导航控制器的最佳实践?

时间:2013-01-02 16:02:32

标签: ios memory-management uinavigationcontroller uistoryboard

我正在开发一个应用程序,它本质上是许多不同测试的序列(为简单起见,考虑SAT测试或Mensa测试)。每个测试都在不同的View + View Controller中实现。

最初我想使用Storyboards和UINavigationControllers来管理测试的顺序和它们之间的转换,但现在我质疑这种方法的有效性。 UINavigationController是一个堆栈,而我的导航只是单向的(一旦你完成了一个你不能回去的测试)。有没有更好的方法来实现应用程序?我还能以某种方式利用故事板吗?

3 个答案:

答案 0 :(得分:8)

我使用自定义容器视图控制器。所以到你的主场景,添加一个“容器视图”。如果您的目标是iOS6,那么在编辑故事板时,会有一个特殊的“容器视图”对象,您现在可以将其拖到自定义容器视图控制器的场景中:

container view

如果是iOS 5,那么(a)你必须手动创建第一个子场景; (b)给它一个唯一的故事板id(在我的例子中,InitialChild,和(c)你手动实例化第一个子控制器并以编程方式将其添加为子。因此,假设你有一个UIView在自定义容器视图控制器的场景中调用containerView,您可以使用以下方法:

- (void)addInitialChild
{
    UIViewController *child = [self.storyboard instantiateViewControllerWithIdentifier:@"InitialChild"];

    [self addChildViewController:child];
    child.view.frame = self.containerView.bounds;
    [self.containerView addSubview:child.view];
    [child didMoveToParentViewController:self];
}

如果要转换到下一个场景,请继承自己的UIStoryboardSegue

在ReplaceSegue.h中:

@interface ReplaceSegue : UIStoryboardSegue

@end

在ReplaceSegue.m

@implementation ReplaceSegue

- (void)perform
{
    UIViewController *source = self.sourceViewController;
    UIViewController *destination = self.destinationViewController;
    UIViewController *container = source.parentViewController;

    [container addChildViewController:destination];
    destination.view.frame = source.view.frame;
    [source willMoveToParentViewController:nil];

    [container transitionFromViewController:source
                           toViewController:destination
                                   duration:0.5
                                    options:UIViewAnimationOptionTransitionCrossDissolve
                                 animations:^{
                                 }
                                 completion:^(BOOL finished) {
                                     [source removeFromParentViewController];
                                     [destination didMoveToParentViewController:container];
                                 }];
}
@end

然后,当从第一个包含的场景到下一个场景执行segue时,指定一个“自定义”segue,并使用此“ReplaceSegue”作为类(只需单击segue选择它然后查看“属性”检查员“)。

enter image description here

生成的故事板可能看起来像(请注意不同孩子之间的“{}”标识):

containment storyboard


参考文献:

答案 1 :(得分:0)

然后只需加载下一个视图控制器并用新视图替换当前视图(在某些顶级视图或应用程序窗口中)。如果需要,可以添加动画。有什么问题?

答案 2 :(得分:0)

您还可以使用视图动画来避免推送视图控制器。您可以像推送VC一样提供视图动画