如何判断哪个控件被触摸了?
我的视图中有两个 PickerView,如何设置我的委托来识别要处理哪一个? 某种 if()
来验证引发事件的选择器是 pickerX 还是 pickerY?
任何想法将不胜感激。
I have two PickerViews in my view, how do I set my delegates to identify which one to handle?
Some kind of if()
to validate if the picker that threw the event was the pickerX or pickerY?
Any ideas will be appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以为 PickerViews 使用 IBOUtlet
,然后在委托方法中执行类似的操作
,或者您可以在 IB 中的 PickerViews 上设置标签并执行
You can have IBOUtlets for the PickerViews like
and then in a delegate method do something like this
or you can set tags on the PickerViews in IB and do
当调用任何委托方法时,它还会传递调用它的对象,在本例中可以这样说。
您可以通过其 TAG id 来识别特定选择器。是的,如果会使用 else 的话。
When any delegate method is called, it also pass the object on which it is called, lets say in this case.
You can identify the particular picker by its TAG id. And yah if else will be used.