iOS中的UIPickerView,从不同组件中的行获取文本
我需要从选择器的特定行获取文本!!委托 didSelect 不起作用,因为在重新加载组件变量后,我在重新加载数据之前获取了该信息。我需要通过调用函数来获取数据。提前致谢 !!
i need to obtain the text from a specific row of the picker !!the delegate didSelect does not work, because after reloading components variable that i am getting its that information before the data was reloaded. I need to obtain the data by calling a function. Thanks in advance !!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果你想从选择器中获取一个 NSString,你只需检查选择了哪一行,然后在 yourArray 中获取相应行索引处的字符串
If you want from the picker to an NSString, you just check which row is selected, and then get the string at the corresponding row-index in yourArray