Top "Pushviewcontroller" questions

Use this tag for questions related to pushing a view controller.

Push View from Presented View Controller in iOS

In Short : How can I PushViewController from Presented ViewController ? In Brief : I have MainViewController, In which I have one button …

ios objective-c uinavigationcontroller pushviewcontroller presentviewcontroller
Completion handler for UINavigationController "pushViewController:animated"?

I'm about creating an app using a UINavigationController to present the next view controllers. With iOS5 there´s a new …

ios uinavigationcontroller handler pushviewcontroller
When to use addChildViewController vs pushViewController

I just watched a 2011 WWDC presentation on "Implementing UIViewController Containment" (here's a link to the video) They mentioned both of …

iphone uiviewcontroller pushviewcontroller addchild
popping and pushing view controllers in same action

is is possible to pop a view off the navigation stack and then push another straight onto it? I'm trying …

ios uinavigationcontroller pushviewcontroller popviewcontroller
Showing pushviewcontroller animation look like presentModalViewController

Is it possible to show pushViewController animation look like presentModalViewController but that has background functionality of pushViewController?

ios iphone animation pushviewcontroller presentmodalviewcontroller
iOS - Push viewController from code and storyboard

I have this code PlaceViewController *newView = [self.storyboard instantiateViewControllerWithIdentifier:@"PlaceView"]; [self presentViewController:newView animated:YES completion:nil]; And I can …

ios uiview storyboard xcode4.5 pushviewcontroller
How can I go back to the initial view controller in Swift?

So I have a login view, after successful login it goes to the first view of a navigation controller, then …

swift uinavigationcontroller pushviewcontroller
push to another view controller without prepareForSegue

How can you push to another view controller without prepareForSegue? myClassVC *viewController = [myClassVC alloc]; UIStoryboardSegue *segue = [[UIStoryboardSegue alloc] initWithIdentifier:@"pushToMyVC" …

ios objective-c uiviewcontroller uistoryboardsegue pushviewcontroller
When use [[UIApplication sharedApplication] delegate]

I don't know when or why I should use [[UIApplication sharedApplication] delegate] I use delegate when [self.navigationController pushViewController:myView …

iphone delegates uiapplicationdelegate pushviewcontroller
Programmatically add UINavigationController in UIViewController

I currently have a view set up as the following: @interface BlogViewController : UIViewController <UITableViewDelegate, UITableViewDataSource> { UITableView *mainTableView; } @property (…

ios uitableview ios4 uinavigationcontroller pushviewcontroller