In my opinion, setNeedsDisplay only affects the view it setNeedsDisplay . Is there an easy way to say "update this look and all its sub-points, recursively?"
In response to the comments, here is my situation: I have a custom view
@interface ContainerView : UIView
This view does not implement drawRect . My xib has an instance (called container ) of a ContainerView that has some (custom) sub items added to it. When in code I say
[container setNeedsDisplay]
I expect these routines to be updated. Where am I mistaken?
georg source share