I want to know the differences between the

[self presentModalViewController:controller animated:YES];

and

    [self.navigationController pushViewController:controller animated:YES];

I have used both but still do not know or noticed the difference. when should use one of them ?

Thanks..

link|improve this question

1  
Summary of the Apple Developer Documentation: Most commonly, applications use modal view controllers as a temporary interruption in order to obtain key information from the user. Navigation Controllers are used to manage the presentation of hierarchical data. Or is your question "What happens behind the scenes?" – wegginho Apr 20 '11 at 9:52
so can I say if I want to display different view from current and get back to the current view then I should use presentModalViewController ? – Maulik Apr 20 '11 at 10:17
If different means a Question like "what do you want to do with this picture? -> upload -> delete -> cancel" and after that action you return to your picture, then yes. – wegginho Apr 20 '11 at 10:21
feedback

3 Answers

up vote 1 down vote accepted

Presenting a modal view is presenting a view on top of another view. You perform those typically for "tasks" that need to be started and completed in a self contained way. Read further on modal views on the apple developer guides.

Pushing a view on to the navigation controller is different where there is a logical need for navigation in the app. Say a drill down table as in the setting app of the iDevices, where there are main settings then you drill down to sub settings etc.

Whatever your questions are, if they are conceptual and generic as this I'd strongly advise you to google up "X programming guide" which will take you to the proper Apple programming guide :) X = view controller in your case

http://developer.apple.com/library/ios/#featuredarticles/ViewControllerPGforiPhoneOS/Introduction/Introduction.html

link|improve this answer
feedback

Basic difference :

pushViewController only works in navigation controllers

presentModalViewController works for all view controllers

navigationController is the instance of your UINavigationController, which is used by all the controller in your navigation stack (UIViewController).

link|improve this answer
feedback

if base class has it's own Navigation Controller Then You can write>>>>

     [self.navigationController pushViewController:myViewController animated:YES];

     //if your base class has only UIViewController then use::

     MyView * MyViewController = [[MyView alloc] initWithNibName:@"MyView" bundle:nil];
     UINavigationController * navMyView = [[UINavigationController alloc] initWithRootViewController:MyViewController];
     navMyView.navigationItem.leftBarButtonItem  = nil; //make nil if you want      
                                                       // to use it in next View
     [self  presentModalViewController:navMyView animated:YES];

}

now, from second View You can -- Push --Another view On that view

-(IBAction)btnNext_click {

    secondView * secondViewController = [[secondView alloc]initWithNibName:@"secondView" bundle:nil];
    [self.navigationController pushViewController:secondViewController animated:YES];

}

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.