
Hi,
What is the code for view will appear iphone?
Thanks

HI,
Here is the code:
- (void)viewWillAppear:(BOOL)animated {
[super viewWillAppear:animated];
//Your code here
NSLog(@"View will appear");
}
This method is executed once view is about to appear.
Thanks