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
You can use UIPopoverController only in iPad application.
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) { // for iPads // here you can use UIPopoverController } else { // for iPhones }