独立双拣选机
我有双选择器,一个选择器用于卡片的花色(红心,钻石等),另一个用于卡片的价值(国王,十,二等)。我想知道一旦已经选择了卡片选择器中的值,如何将其消除,以便无法再次选择它?
I have double picker one picker for suit (heart, diamond etc) of a card and the other the value of the card (king, ten, two etc). What I want to know how do I eliminate a value from the card picker once it was already selected so it cant be chosen again?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将 UIPickerView 的数据存储在
NSMutableArray
中。然后,当用户做出选择时,从数据源数组中删除这些对象,并调用当然,只有当您没有对
numberOfRowsInComponent:
的值进行硬编码,而是执行某些操作时,这才会起作用。喜欢Keep your UIPickerView's data stored in an
NSMutableArray
. Then, when the user makes his choices, remove those objects from the data source array, and callThis will only work, of course, if you're not hardcoding the value for
numberOfRowsInComponent:
, but doing something like