I have a question about iOS programming.
I am trying to get all subviews from main UIView, and subview properties. I am using delegate "- (void)listSubviewsOfView:(UIView *)view", but this method returns poorly described subview information.
For example:
- "UIImageView: 0x1d557250; frame = (10 6.5; 32 32); opaque = NO; autoresize = RM+BM; userInteractionEnabled = NO; layer = CALayer: 0x1d557220",
- "UILabel: 0x1d557190; frame = (50 0; 240 43); text = '11:00'; clipsToBounds = YES; opaque = NO; autoresize = RM+BM; userInteractionEnabled = NO; layer = CALayer: 0x1d557960",
- "UIView: 0x1d5568e0; frame = (110 10; 190 23); layer = CALayer: 0x1d5568b0",
But I want to get, for example, UILabel text color, font size and other information. Is there some kind of method or objects which can help me get this information?