I want to change below code with storyboard with Xcode 4.2.
UIViewController * example = [[ExampleViewController alloc] initWithNibName:@\"ExampleViewCon
The UIStoryboard class is your friend:
UIStoryboard* sb = [UIStoryboard storyboardWithName:@"mystoryboard" bundle:nil]; UIViewController* vc = [sb instantiateViewControllerWithIdentifier:@"ExampleViewController"];