创建下拉列表
我想从头开始制作一个下拉列表。谁能告诉我该怎么做吗?
I want to make a drop-down list from scratch. Can anyone please tell me how to do so?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我想从头开始制作一个下拉列表。谁能告诉我该怎么做吗?
I want to make a drop-down list from scratch. Can anyone please tell me how to do so?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
您将从 UITextField 和一个按钮开始,看起来像一个正常的封闭下拉列表。然后,当单击按钮时,我将添加一个新视图,其中包含一个用于下拉部分的小 UITableView。应该不会太难。不过,我会重新考虑是否需要下拉框。它只是屏幕上没有足够的空间,而 UIPickerView 更适合恕我直言。现在,在 iPad 上,他们使用类似于我上面描述的下拉菜单,但屏幕上有足够的空间来实现这一点。
You would start with a UITextField and a button to look like a normal closed drop down list. Then when the button is clicked I would add a new view containing a small UITableView for the drop down part. It shouldn't be too hard. However I'd reconsider the need for a drop down box. Its just not something that you have room on screen for, and the UIPickerView is better suited IMHO. Now on the iPad they use a drop down similar to what I described above but it has enough room on the screen to make this practical.
您可以使用 UIPickerView 或 UITableView 来获得类似于下拉列表的功能。
You can use a UIPickerView or a UITableView to have a functionality akin to drop down lists.