I have an xib file with a .h and .m linked. In the xib there is a UIView with a textView. What I would like to do with that view is open it as a UIPopViewController when you cli
This must just work for you guys
-(void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
{
if ([segue.identifier isEqualToString:@"popoverSegue"])
{
UIViewController *popUpControl=segue.destinationViewController;
popUpControl.modalPresentationStyle=UIModalPresentationPopover;
popUpControl.popoverPresentationController.delegate=self;
}
}
-(UIModalPresentationStyle)adaptivePresentationStyleForPresentationController:(UIPresentationController *)controller
{
return UIModalPresentationNone;
}