12.18 Print all subclasses in view

Source: Internet
Author: User

Give a view to print its child controls

-(NSString *) Digview: (UIView *) view

{

if ([View Iskindofclass:[uitableviewcell class]) return @ "";

1. Initialization

nsmutablestring *xml = [nsmutablestring string];

2. Label start

[XML appendformat:@ "<%@ frame=\"%@\ "", View.class, Nsstringfromcgrect (View.frame)];

if (! Cgpointequaltopoint (View.bounds.origin, Cgpointzero)) {

[XML appendformat:@ "bounds=\"%@\ "", Nsstringfromcgrect (View.bounds)];

}

if ([View Iskindofclass:[uiscrollview class]]) {

Uiscrollview *scroll = (Uiscrollview *) view;

if (! Uiedgeinsetsequaltoedgeinsets (Uiedgeinsetszero, Scroll.contentinset)) {

[XML appendformat:@ "contentinset=\"%@\ "", Nsstringfromuiedgeinsets (Scroll.contentinset)];

}

}

3. Decide if you want to end

if (View.subviews.count = = 0) {

[XML appendstring:@ "/>"];

return XML;

} else {

[XML appendstring:@ ">"];

}

4. Traverse all the child controls

For (UIView *child in view.subviews) {

NSString *childxml = [self digview:child];

[XML Appendstring:childxml];

}

5. End of label

[XML appendformat:@ "</%@>", View.class];

return XML;

}

12.18 Print all subclasses in view

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.