how to change current displaying uiview without using segues?

500 Views Asked by At

enter image description herei want to change display to an UIViewController which has view controller at storyboard from an UIViewController class which hasn't got view controller at storyboard. There is no segue at storyboard for this...

2

There are 2 best solutions below

6
On

Just like this:

In your AppDelegate.m do a quick setup:

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    // Override point for customization after application launch.

    ViewController *sourceViewController = [[ViewController alloc] init];
    UINavigationController * nav = [[UINavigationController alloc] initWithRootViewController:sourceViewController];
    [self.window setRootViewController:nav];
    return YES;
}

In above example replace ViewController class with your own class of sourceViewCntroller

- (IBAction) didPressMyButton {
    NewViewController* newVC = [[[NewViewController alloc] init] autorelease];
    [self.navigationController pushViewController:newVC animated:YES];
}

Connect this action to a button on storyboard or embed view change in any method. You will need to setup UINavigation controller first.

1
On

I'm not completely sure I understand what you're trying to do, but I think you are asking how to load a view controller from a storyboard, without using a segue, from a method in a view controller that wasn't loaded from the storyboard.

First, in your storyboard, select the view controller you want to load, and open the Identity Inspector. Set the Storyboard ID of the view controller. It looks like you want to load a MapViewController, so let's say you set the storyboard ID to map.

In your code, you can load the view controller like this:

UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"MainStoryboard" bundle:nil];
MapViewController *mapViewController = [storyboard instantiateViewControllerWithIdentifier:@"map"];

Once you have a reference to the view controller, you can set its properties or send it messages. You can then display it in whatever way you want - maybe by pushing it onto a navigation controller, or by presenting it, or by setting it as the root view controller of your window.