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
You can override these two:
- (void)willMoveToSuperview:(UIView *)newSuperview - (void)didMoveToSuperview
Take a look in the documentation for UIView for similar methods.
UIView