UIPopViewController not working

后端 未结 3 2078
一整个雨季
一整个雨季 2021-02-11 02:38

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:10

    You can use UIPopoverController only in iPad application.

    if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
    {
        // for iPads
        // here you can use UIPopoverController   
    } else
    {
        // for iPhones
    }
    

提交回复
热议问题