
Can anyone tell me how to reload the uiviewcontroller in my iphone application every time ..whenever i switch and come back from different view controller.
Thanks!

the viewWillAppear method always run, whenever the view get loads. So, you can write your code within it.
- (void)viewWillAppear:(BOOL)animated {
[super viewWillAppear:animated];
}
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.