I want to move to other views created in storyboard through alert view menu buttons displayed in home page. An alert view gives the list of buttons containing different views.
How can I move to those views.
I am using
-(void) alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex
{
if (buttonIndex == 1){
}
if (buttonIndex ==2) {
}
if(buttonIndex == 3){
}
}
First you need to get an instance of the storyboard.
Then you instantiate your Viewcontrollers using the storyboard.
Then you push onto the navigation stack as usual.