在 UITableView 中选择行时如何显示 UIPickerView?
我有一个 UITableView,其中有一些行。点击表格中的一行时是否可以显示 UIPickerView?
我希望 UIPickerView 根据选择的 UITableView 的行来更改其数据。
I have a UITableView with some rows in it. Is it possible to show a UIPickerView when tapping on a row in the table?
I want the UIPickerView to change its data depending on which row it the UITableView that is selected.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您为 UITableView 设置了委托集,那么该视图将向您发送适当的委托方法。从那里您可以重新加载选择器视图。点击此处了解更多信息。
编辑:更正链接。
If you set a delegate set for UITableView then that view will send you the appropriate delegate methods. From there you can reload your picker view. Click here to find out more.
edited: corrected link.