On the iPhone, I have a table view and touch cells, I have one method that calls presentModalViewController, and open another view using email and similar materials. When the user clicks the cancel button, the viewWillAppear method in the previous view is called. So far, so good. But on the iPad, viewWillAppear is only called for the first time the view appears, does anyone know if this is a mistake or is it right? I tried to implement
- (void)navigationController:(UINavigationController *)navigationController didShowViewController:(UIViewController *)viewController animated:(BOOL)animated{
without success.
Does anyone know how to fix this without using any delegate method from scratch? thanks in advance
iphone ipad tableview viewwillappear
Wak
source share