12: Determine whether a widget is displayed in the main window (encapsulation) based on four conditions.

Source: Internet
Author: User

12: Determine whether a widget is displayed in the main window (encapsulation) based on four conditions.

Four conditions:

1. Add to main window?

2. Hide or not

3. Whether the transparency is greater than 0.01

4. Is it in the current window (when the key point is determined based on the frame, the frame of the control is determined based on the upper left corner of the current window)

1-(BOOL) isShowingOnKeyWindow 2 {3 // Main Window 4 UIWindow * keyWindow = [UIApplication sharedApplication]. keyWindow; 5 6 // calculate the rectangle of self based on the coordinate origin in the upper left corner of the window. 7. CGRect newFrame = [keyWindow convertRect: self. frame fromView: self. superview]; 8 CGRect windowBounds = keyWindow. bounds; 9 // determine if newFrame is on windowBounds 10 BOOL isOnWindow = CGRectIntersectsRect (newFrame, windowBounds); 11 12 return self. window = keyWindow && ! Self. hidden & self. alpha> 0.01 & isOnWindow; 13}

 

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.