如何在iPad中实现模态弹出视图?喜欢facebook屏幕使用sharekit?

时间:2011-04-24 06:22:28

标签: iphone objective-c cocoa-touch ipad ios4

您好我想在iPad中实现ModalPopup视图。我该如何实施?我对此一无所知。谁能给我一些指导方针?像facebook屏幕一样使用sharekit的小屏幕。感谢。

2 个答案:

答案 0 :(得分:5)

浏览以下博客教程,肯定会对您有帮助。

Using the PopoverView in iPad App Development

答案 1 :(得分:1)

注意:如果你想要一个弹出窗口,关于弹出窗口的接受答案是正确的。但你可能只想要模态窗口,而不是带箭头的窗口!那就是解决方案。

要在您自己的ViewController中实现弹出窗口,请在Storyboard中创建一个ViewController,然后使用具有以下属性的segue:

enter image description here

这会导致以模态方式显示View Controller。要更改View Controller的运行时大小,请检查View Controller的以下设置:

enter image description here

实现自定义对话框的另一种方法是使用UIAlertController。现在这非常灵活,但它仍然非常有限。如果你想使用自定义设计和多个元素,最好使用自定义UIViewController。

希望它有所帮助。