When an iOS jump occurs, attempt to dismiss modal view controller whose view does not currently ...... Solution, dismissmodal

Source: Internet
Author: User

When an iOS jump occurs, attempt to dismiss modal view controller whose view does not currently ...... Solution, dismissmodal

Today, when the password is successfully changed and you are redirected to the logon page to log on again, the original code I wrote is:

[Self dismissViewControllerAnimated: YES completion: nil];

[UIApplication sharedApplication]. keyWindow. rootViewController = [[loginViewController alloc] init];

So I jumped to the login page on this page and switched back to this page.

First, the password change page:


Click OK to go To the logon page:



However, on the logon page, the password change page is displayed:



At the beginning, I crashed. I searched for the code online, but it didn't work. I tried it for a while and changed the code. The modified code is:

// Destroy the Controller

[Self dismissViewControllerAnimated: YES completion: nil];
// Return to the login Homepage
LoginViewController * login = [[loginViewController alloc] init];
UIWindow * window = [[UIApplication sharedApplication]. windows objectAtIndex: 0];
Window. rootViewController = login;


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.