Is there an easy way for listening for when a child or subview has been added to a UIView?

I've gone through the addobserver options and haven't found an obvious option anyway. There may be another option that would be affected though when content is added to a view or am I wrong in saying that? i.e. content width or height, positions, etc.?

Edit This is accomplished easily using the advice of @Alkimake below (TextHolderClass). I created a custom UIView subclass and set the UIView's class in Interface Builder to be equal to TextHolderClass

Thanks for your help, I know it should have been obvious :)

link|improve this question

77% accept rate
feedback

2 Answers

up vote 2 down vote accepted

UIView has 2 methods to call after subview interactions. Simply create your custom UIView class and implement these methods which is pretty for you. And use your own CustomView

- (void)didAddSubview:(UIView *)subview;
- (void)willRemoveSubview:(UIView *)subview;
link|improve this answer
Cheers, I've done that and it's worked a charm. What I was trying to achieve in the first place is to listen to when the subview has been added and move an image on my UIViewController's interface to the right of the subview that was added. What is the best way to go about this now that I am using a separate class to respond to the event? – Conor Higgins Feb 2 at 15:38
Can you be more clear? I think i didnt get :) – Alkimake Feb 2 at 20:49
I've sorted this issue out now thankfully here – Conor Higgins Feb 2 at 22:43
feedback

UIView methods may help you:

- (void)willMoveToSuperview:(UIView *)newSuperview
link|improve this answer
Is that supposed to be called automatically? As in can I just add that method to my implementation file and it should be called when a subview is added/removed to/from the UIView? – Conor Higgins Feb 2 at 15:24
Yes, if you implement this method in your subclass of UIView, it will be called automatically - however, this method is called when itself is added to a superview, not when you add subview to it. @Alkimake gave you the methods for that. – bandejapaisa Feb 3 at 14:25
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.