Multi-Controller Management and Controller Management

Source: Internet
Author: User

Multi-Controller Management and Controller Management

// Add the child view controller FirstViewController * firstViewController = [[FirstViewController alloc] initWithNibName: @ "FirstViewController" bundle: nil] in the parent view controller; [self addChildViewController: firstViewController]; secondViewController * secondViewController = [[SecondViewController alloc] listener: @ "SecondViewController" bundle: nil]; [self addChildViewController: secondViewController]; Role * ThirdViewController = [[thirdViewController alloc] listener: @ "ThirdViewController" bundle: nil]; [self addChildViewController: thirdViewController]; [self. view addSubview: thirdViewController. view]; // addChildViewController calls [child willMoveToParentViewController: self] Back, but does not call didMoveToParentViewController. Therefore, you need to call [thirdViewController preview: self]; currentViewController = thirdViewController; // switch the child view controller [self transitionFromViewController: currentViewController toViewController: firstViewController duration: 4 options: UIViewAnimationOptionTransitionFlipFromLeft animations :{} completion: ^ (BOOL finished) {// ......}]; currentViewController = firstViewController; // remove child view controller // removeFromParentViewController does not call [self willMoveToParentViewController: nil] Before removing child. Therefore, you need to call [currentViewController willMoveToParentViewController: nil]. [currentViewController removeFromSuperview]; [currentViewController removeFromParentViewController];

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.