i have used a separate storyboard in my project. (i created storyboard like : New File -> ios -> User Interface ->storyboard) and gave it a name "main button".
From following code m accessing it. Actually m showing this storyboard via popover.
UIStoryboard *settingsStoryboard = [UIStoryboard storyboardWithName:@"main button" bundle:nil]; UIViewController *settingsViewConroller = [settingsStoryboard instantiateInitialViewController]; //create a popover controller self.RoutingDetailPopoverController = [[UIPopoverController alloc] initWithContentViewController:settingsViewConroller];
In storyboard i have UINavigationController embedded with UITableViewController. In the navigation bar i have given "Close" bar button. But im not able to dismiss it.
Please help me.
please suggest you idea.