2

アニメーションをカスタマイズできるように、UINavigationControllerに似たものを作成しようとしています。まず、Appleのストックアニメーションを使用しています。これが私のcontainerViewControllerです:

- (void)loadView {
    // Set up content view
    CGRect frame = [[UIScreen mainScreen] bounds];
    _containerView = [[UIView alloc] initWithFrame:frame];
    _containerView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
    self.view = _containerView;

}

- (id)initWithInitialViewController:(UIViewController *)vc {
    self = [super init];
    if (self) {
        _currentViewController = vc;

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

        _subViewControllers = [[NSMutableArray alloc] initWithObjects:_currentViewController, nil];
    }
    return self;
}



- (void)pushChildViewController:(UIViewController *)vc animation:(UIViewAnimationOptions)animation {
    vc.view.frame = _containerView.frame;
    [self addChildViewController:vc];

    [self transitionFromViewController:_currentViewController toViewController:vc duration:0.3 options:animation animations:^{

    }completion:^(BOOL finished) {
        [self.view addSubview:vc.view];
        [vc didMoveToParentViewController:self];
        [self.subViewControllers addObject:vc];
    }];
}

- (void)popChildViewController:(UIViewController *)vc WithAnimation:(UIViewAnimationOptions)animation {
    // Check that there is a view controller to pop to
    if ([self.subViewControllers count] <= 0) {
        return;
    }

    NSInteger idx = [self.subViewControllers count] - 1;
    UIViewController *toViewController = [_subViewControllers objectAtIndex:idx];
    [vc willMoveToParentViewController:nil];

    [self transitionFromViewController:vc toViewController:toViewController duration:0.3 options:animation animations:^{

    }completion:^(BOOL finished) {
        [vc.view removeFromSuperview];
        [vc removeFromParentViewController];
        [self didMoveToParentViewController:toViewController];
        [self.subViewControllers removeObjectAtIndex:idx];
    }];
}

このContainerViewcontrollerをウィンドウのrootViewControllerとして使用しています。最初のviewControllerを追加して、viewcontrollerをプッシュできます。でもポップしようとすると

ContainerViewController[65240:c07] Unbalanced calls to begin/end appearance transitions for <SecondViewController: 0x8072130>.

私は何が間違っているのだろうかと思っています。initialViewControllerがまだsecondViewControllerの下にあると思いました。何かご意見は?ありがとう!

4

3 に答える 3

4

これがあなたの問題の原因であるかどうかはわかりませんが、これはすべきではありません:

[self didMoveToParentViewController:toViewController];

なれ:

[toViewController didMoveToParentViewController:self];

また、subViewControllers 配列で何をしているのかわかりません。既に UIViewController のプロパティである childViewControllers 配列の複製のようです。

もう1つ、よくわからないことがあります。pop メソッドでは、 toViewController は _subViewControllers 配列の最後のコントローラーです。2番目に長くなりたくないですか?あなたがポップしているのは最後のものであるべきではありませんか?メソッドに渡すコントローラーであるvcをポップしていますが、わかりません。

これは、コントローラーのようなナビゲーションを作成した方法です。コンテインメント動作では、ナビゲーション コントローラーのように動作しますが、ナビゲーション バーはなく、さまざまな遷移アニメーションが可能です。

@implementation ViewController

-(id)initWithRootViewController:(UIViewController *) rootVC {
    if (self = [super init]) {
        [self addChildViewController:rootVC];
        rootVC.view.frame = self.view.bounds;
        [self.view addSubview:rootVC.view];
    }
    return self;
}


-(void)pushViewController:(UIViewController *) vc animation:(UIViewAnimationOptions)animation {
    vc.view.frame = self.view.bounds;
    [self addChildViewController:vc];
    [self transitionFromViewController:self.childViewControllers[self.childViewControllers.count -2] toViewController:vc duration:1 options:animation animations:nil
            completion:^(BOOL finished) {
            [vc didMoveToParentViewController:self];
            NSLog(@"%@",self.childViewControllers);
    }];
}

-(void)popViewControllerAnimation:(UIViewAnimationOptions)animation {
    [self transitionFromViewController:self.childViewControllers.lastObject toViewController:self.childViewControllers[self.childViewControllers.count -2] duration:1 options:animation animations:nil
                            completion:^(BOOL finished) {
                                [self.childViewControllers.lastObject removeFromParentViewController];
                                NSLog(@"%@",self.childViewControllers);
                            }];
}

-(void)popToRootControllerAnimation:(UIViewAnimationOptions)animation {
    [self transitionFromViewController:self.childViewControllers.lastObject toViewController:self.childViewControllers[0] duration:1 options:animation animations:nil
                            completion:^(BOOL finished) {
                                for (int i = self.childViewControllers.count -1; i>0; i--) {
                                    [self.childViewControllers[i] removeFromParentViewController];
                                }
                                NSLog(@"%@",self.childViewControllers);
                            }];
}

編集後: IB のすべてのコントローラー (カスタム コンテナー コントローラーを含む) にナビゲーション バーを追加することで、このコントローラーで戻るボタンの機能を複製することができました。押されるコントローラにバー ボタンを追加し、タイトルを nil に設定しました (タイトルを「項目」のままにしておくと、いくつかの不具合が発生しました)。そのタイトルを削除すると、ボタンが消えます (IB で) が、シーン リストで引き続き接続できます。IBOutlet を追加し、次のコードを追加して、必要な機能を取得しました。

- (void)viewWillAppear:(BOOL)animated {
    [super viewWillAppear:animated];
    if (self.isMovingToParentViewController) {
        self.backButton.title = [self.parentViewController.childViewControllers[self.parentViewController.childViewControllers.count -2] navigationItem].title;
    }else{
        self.backButton.title = [self.parentViewController.childViewControllers[self.parentViewController.childViewControllers.count -3] title];
    }
}

タイトルにアクセスする 2 つの異なる方法を示しました。IB では、else 句で使用したコントローラーのタイトルを設定できます。または、if 句の部分で行ったように、navigationItem タイトルを使用できます。 . viewWillAppear が呼び出された時点で、ポップされるコントローラがまだ childViewControllers 配列にあるため、else 句の「-3」が必要です。

于 2012-12-07T18:21:12.663 に答える
4

addChildViewController最初に呼び出す必要があります

追加/削除については、この優れたカテゴリを参照でき、いつ呼び出すかを心配する必要はありません:

UIViewController + コンテナ

- (void)containerAddChildViewController:(UIViewController *)childViewController {

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

}

- (void)containerRemoveChildViewController:(UIViewController *)childViewController {

    [childViewController willMoveToParentViewController:nil];
    [childViewController.view removeFromSuperview];
    [childViewController removeFromParentViewController];

}
于 2013-04-20T21:22:44.053 に答える
3

rdelmar の回答に加えて、ドキュメントから addView/removeFromSuperview を呼び出してはいけませんtransitionFromViewController:

このメソッドは、2 番目のビュー コントローラーのビューをビュー階層に追加し、アニメーション ブロックで定義されたアニメーションを実行します。アニメーションが完了すると、ビュー階層から最初のビュー コントローラーのビューが削除されます。

于 2012-12-07T18:39:38.493 に答える