Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在开发一个应用程序,我希望有一个类似于 iOS 上 Safari 中的弹出列表视图:
这种带有小气泡样式箭头和细边框的弹出窗口出现在许多应用程序上。它是标准组件吗?如果是这样,我该如何创建一个?
它被称为 UIPopoverController。
您使用指定的初始化程序创建它
– initWithContentViewController:
我强烈建议您阅读它的文档:
如果您正在为 iPad 开发,请使用 UIPopoverController。但是,iPhone 本身不支持弹出框。我不会在 iphone 上使用弹出框,而是创建一个新场景,其中包含您想要的弹出框。
但是,如果您致力于在 iPhone 上使用弹出框,则可以查看各种第三方 API。WEPopover 是比较流行的一种。