IOS returns to the rootViewController root controller view, and ios View Controller Switches

Source: Internet
Author: User

IOS returns to the rootViewController root controller view, and ios View Controller Switches

Directly Add code

-(Void) backToRootViewController {UIViewController * vc = [MainViewController instance]. navigationController. visibleViewController; if ([vc isEqual: [MainViewController instance]) return; if (vc. presentingViewController) {[vc dismissViewControllerAnimated: NO completion: ^ {[self backToRootViewController] ;}];} else {[vc. navigationController popViewControllerAnimated: NO]; [self backToRootViewController];}

The above Code requires an Instance Object of the root controller. The principle is to iteratively bring up the stack top Controller until the root controller is returned. No animation is shown here. If you want to display an animation, you need to use CATransaction to control the popViewControllerAnimated animation and then execute the call again. Otherwise, an error will certainly occur. I personally don't think it is necessary. It may take several seconds for no one to return to the home page.

Good luck!

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.