Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.