IOS11 custom pop-up window does not show/HUD does not disappear problem solution, ios11hud

Source: Internet
Author: User

IOS11 custom pop-up window does not show/HUD does not disappear problem solution, ios11hud

Solution to the problem that iOS11 custom pop-up window does not display/HUD does not disappear. Recently, an old project running has encountered iOS11 compatibility problems, and iOS10 and earlier versions are normal, in iOS 11 alone, a variety of pop-up windows do not show, or do not disappear. I looked at the source code and found that it was my pot.

Before iOS10
[[[UIApplication sharedApplication] windows]. lastObject addSubview: myaleView];
Yes.ApplicationThe last object in windows can always find the currentWindow.
The reason why iOS 11 is incompatible is that the current method cannot be found.Window,KeyWindow is no longer a question
[[UIApplication sharedApplication]. keyWindow addSubview: myaleView];

In short, command + f or search for the entire project[[[UIApplication sharedApplication] windows]. lastObject addSubview:Change findReplace. Replace all[[UIApplication sharedApplication]. keyWindow addSubview: OK.

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.