1. ホーム
  2. objective-c

[解決済み] RootViewControllerのスイッチングアニメーション

2022-07-14 02:20:10

質問

appDelegateでrootviewcontrollerとして既存のviewcontrollerを新しいものに置き換えながら、Transition/animation効果を持たせる方法はないでしょうか?

どのように解決するのですか?

の切り替えをラップすることができます。 rootViewController の切り替えをトランジションアニメーションブロックでラップすることができます。

[UIView transitionWithView:self.window
                  duration:0.5
                   options:UIViewAnimationOptionTransitionFlipFromLeft
                animations:^{ self.window.rootViewController = newViewController; }
                completion:nil];