向 UIPopoverController 添加内容
我做了一个弹出窗口。目前该弹出窗口是空白的。我需要向弹出窗口添加 6 个按钮。按 6 个按钮中的任何一个,应用程序会将用户带到相应的屏幕。我想以表视图样式添加这些按钮。您可以考虑附带的图像(检查 iPad 左侧有 6 个选项的弹出窗口)。我想用同样的方式来做。请指导我。 问候 PC。
I have made one popover. Presently that popover is blank. I need to add 6 buttons to the popover. Pressing any of the 6 buttons, the app takes the user to the respective screen. I want to add those buttons in table view style. You can consider the image attached with it (check the popup with 6 options in the left side of the iPad). I want to do it in the same way. Guide me please.
Regards PC.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
创建一个视图控制器,添加一个 UITableView,实现它以正确显示单元格,使其成为弹出窗口控制器的内容。
Create a view controller, add a UITableView, implement it to show the cells correctly, make it the content of the popover controller.
打开Xcode Organizer >文档并搜索UIPopoverController。在左侧边栏中的底部,打开“Popovers”示例代码项目。
基本上,您会发现需要在代码中的某个位置创建一个
UIPopoverController
实例:并在某个时刻显示它,例如当用户按下按钮时:
我建议研究该示例。如果您需要有关
UITableView
部分的帮助,文档中提供了数十个有关该主题的示例(以及 SO 中的数百个问题)。Open the Xcode Organizer > Documentation and search UIPopoverController. In the left sidebar, at the bottom, open 'Popovers' sample code project.
Basically you'll see that you need to create a
UIPopoverController
instance somewhere in your code:And show it at some point, such as when the user press a button:
I'd suggest to study the sample. If you need help with the
UITableView
part, there are dozens of samples on the subject in the Documentation (and hundredths of questions in SO).