Common uses of UIView

Source: Internet
Author: User

Common uses of UIView

1.addSubview: (UIView *) Child

Add child controls (added late display on top)

2.NSArray *subviews

The child controls added by the Addsubview: method will exist in this array

3.removeFromSuperview

Remove the control itself from the parent control (the control itself is also removed from the parent control's subviews array)

4. (UIView *) Viewwithtag: (int) MyTag

Returns a child control with a tag value of MyTag

A [B = 2 \ C = 2 \ D = 3];

[A Viewwithtag:2];

for (UIView *child in A.superviews) {

if (Child.tag = = 2) return child;

}

Return nil;


If the tag value of more than one child control is the same, only the first matching child control is returned (the control itself is also included when searching for tag matching controls)

5.UIView *superview

Parent control


Common uses of UIView

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.