If I add a view as a subview like so

[self.view addSubview:mySubview];

Will there be called any method on mySubview, that I could override to add some custom behavior?

link|improve this question

64% accept rate
feedback

4 Answers

up vote 9 down vote accepted

Adding a view to a (new) superview triggers

- (void)willMoveToSuperview:(UIView *)newSuperview

and

- (void)didMoveToSuperview.

See the UIView Reference for more.

link|improve this answer
Thanks for the very quick response. I will kind of stupid, that I havent noticed the method right away myself... – Pascal Klein May 28 '11 at 14:33
Good stuff! Learned something new +1 – Sid Jun 1 '11 at 16:37
feedback

You can override these two:

- (void)willMoveToSuperview:(UIView *)newSuperview
- (void)didMoveToSuperview

Take a look in the documentation for UIView for similar methods.

link|improve this answer
feedback

Yes, There is a method which get called if one change the superview . you need to override the below method in your subview class.

- (void)willMoveToSuperview:(UIView *)newSuperview
- (void)didMoveToSuperview

From UIView Doucumentation

willMoveToSuperview:, didMoveToSuperview—Implement these methods as needed to track the movement of the current view in your view hierarchy.

link|improve this answer
feedback

exep for special purpose is far better to customize you view in init phase, you have all you need and (more important) is a synchronous call.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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