Segue to a ViewController from non-Storyboard ViewController?

I don't know if I really understand your question, but if you want a push transition, use this.

Up vote 0 down vote favorite share g+ share fb share tw.

Im using Storyboard for most screens in my iPhone app. However, I have one screen in my storyboard where I dynamically load a XIB an embedded it within the main view. This XIB have an image and some text and is connected to its own UIViewController.

My problem is that when I tap on the image in the XIB I want to segue to another UIViewController in my Storyboard. However, because my XIB is not in my Storyboard (its dynamically added at runtime) there is no way I can connect my XIB's view controller with a segue. I'm getting the error "Receiver () has no segue with identifier".

This makes sense because the segue is not connected so is there anyway tha tI can programmatically segue to the other view? I've seen examples where I can have a modal transition, but instead I would like to have a "push" transition. Thanks Brian iphone ios uiviewcontroller storyboard segue link|improve this question asked Mar 29 at 23:27Brian Boyle686 55% accept rate.

I don't know if I really understand your question, but if you want a push transition, use this: self. NavigationController pushViewController:someViewController animated:YES.

That works, thanks – Brian Boyle Mar 29 at 23:42.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions