iPhone:如何在iPhone中显示带有图像的控制器之类的弹出视图?
我想在 iPhone 中显示带有图像的小型弹出视图(就像 iPad 中的弹出视图,但这里我想要在 iPhone 中)。
我怎样才能做到这一点?
I want to display small popup view (just like popup view in iPad but here I want in iPhone) in iPhone with image.
How can I do that ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
@devang你肯定会欣赏这个 http ://iosdevelopertips.com/open-source/ios-open-source-popover-api-for-iphone-wepopover.html
另一种方法是 Mehul 建议的。如果您遇到与 iPad 中的 UIPopover 相对应的内容,请告诉我们。
@devang you would certainly appreciate this http://iosdevelopertips.com/open-source/ios-open-source-popover-api-for-iphone-wepopover.html
The other approach is what Mehul suggested. Do let us know if you come across something which corresponds to UIPopover in iPad.
您可以动态获取 UIView,然后在该 UIView 中添加 UIImageView,就像这样
希望这会起作用......
You can take UIView dynamically and then add UIImageView in this UIView just like this
Hope this will Work....
Collectionview 可以在屏幕上弹出。下面是用于将 CollectionView 显示为弹出窗口并隐藏弹出窗口的完整代码
我在 Viewcontroller 中创建了一个按钮,并在按钮上调用了 showMessage() 函数,单击它将弹出一个带有颜色的 CollectionView。选择颜色时弹出窗口将消失。
Collectionview Can be popUp on screen. Below is complete code for showing collectionview as popup and hiding the popup window
I created a button in Viewcontroller and called showMessage() function on button click it will pop up a collectionview with colors. On select of color popup will disapear.