iOS中的UIPickerView,从不同组件中的行获取文本

发布于 2024-11-25 08:28:48 字数 94 浏览 1 评论 0原文

我需要从选择器的特定行获取文本!!委托 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

半世晨晓 2024-12-02 08:28:48
- (NSString *)pickerView:(UIPickerView *)pickerView titleForRow:(NSInteger)row forComponent:(NSInteger)component;
{
    return [yourArray objectAtIndex:row];
}

如果你想从选择器中获取一个 NSString,你只需检查选择了哪一行,然后在 yourArray 中获取相应行索引处的字符串

- (NSString *)pickerView:(UIPickerView *)pickerView titleForRow:(NSInteger)row forComponent:(NSInteger)component;
{
    return [yourArray objectAtIndex:row];
}

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文