iPhone 中的组合框需要帮助
请帮我使用 iPhone 创建下拉框。我尝试在 pickerview 中使用文本字段,但没有按照我的要求工作,您可以建议解决此问题的网址吗?数据应来自 xml 并作为 html 中的选择选项。
Please help me to create drop down box using iphone. I tried in pickerview with textfield but not worked as my requirement can u suggest the url for to solve this problem. The data should come from xml and as a select option in html.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最简单的方法是使用带有选项的 UITableView,在选择单元格时,该单元格的值返回到具有选择的任何控件。
例如,对于选择,您可以使用带有自定义图像的按钮,并使用presentModelViewController 显示表格。
当 TableView 显示并进行选择时,您可以存储所选值并使用 DismissModalViewController 关闭 tableView。
我遇到了同样的问题,Picker 不符合我的要求并使用了 tableView 解决方案。
The easiest way is to use a UITableView with the options, which upon selecting a cell, returns the value of that cell to whatever control that has the select.
For the select you can use a button with a custom image for example, and show a table using presentModelViewController.
When the TableView shows and a selection is made, you store the selected value and dismiss the tableView using dismissModalViewController.
I had the same problem where the Picker just did not fit my requirements and used the tableView solution.