I\'m wondering, is there a way to get a delegate or something, when a particular UIView has been shown on the screen ?
UIView
If you are managing the UIView via a UIViewController, then you can use the -viewDidAppear: method:
UIViewController
-viewDidAppear:
- (void) viewDidAppear:(BOOL) animated { //do stuff... [super viewDidAppear:animated]; }