UIPopViewController not working

后端 未结 3 1479
感情败类
感情败类 2021-02-11 02:43

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

3条回答
  •  [愿得一人]
    2021-02-11 03:02

    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;
    }
    

提交回复
热议问题