I subclass UIView and have an NSString member named imgName; All views added to the superview are MyCustomView;
I do this:
NSArray *arr = [view subviews];
for (int x = 0; x < [arr count]; x++)
{
MyCustomView *view = [arr objectAtIndex:x];
NSString *imgName = view.imgName; <-- Unrecognized selector
}
I really want access to that member. If I kept a different running list of subviews image names it would be problematic because I would also have to maintain their positioning in the view hierarchy (as I want the view hierarchy as is with zIndexes).
How can I get the string from [view subviews]?
MyCustomView, or more specifically, how you are declaring that member? – Mr. Jefferson Nov 7 '11 at 18:48