iphone弹窗怎么办?使用什么控件
我想在 iPhone 4 上制作弹出式图层。可以吗?就像这个屏幕截图一样:
I want to make a popup type of layer on the iPhone 4. Is that possible? Like in this screenshot:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
那是一个自定义控件。 iPad 上有一个名为
UIPopOverController
的系统弹出控件,但我认为它在 iPhone 上不可用。另请参阅有关 iPhone 上弹出窗口的上一个问题。That’s a custom control. There’s a system pop-up control on the iPad called
UIPopOverController
, but I don’t think it’s available on the iPhone. See also this previous question about popovers on iPhone.在iPad上,您可以使用内置的UIPopoverController来实现非常类似的控制。 iPhone 中没有像弹出框那样显示的内置控件。您要么必须创建自己的控件,要么使用不同的控件。
有一个适用于 iPhone 的开源 Popover。我从未使用过它,但我认为它会满足您的需求: https://github.com/werner77/WEPopover< /a>
On the iPad, you can use the built in UIPopoverController to achieve a very similar control. There is no built in control that shows like a popover in the iPhone. You will either have to create your own or use a different control.
There is an open source Popover for iPhone. I've never used it but I think it will fulfil your needs: https://github.com/werner77/WEPopover