iphone UIPickerView 选择行

发布于 2024-09-14 05:19:36 字数 196 浏览 4 评论 0原文

我的视图包含 UIPickerView... 我尝试编写此代码:

[self.picker selectRow:rowSelected inComponent:0 animated:true];

选择具有索引 rowSelected 的行,但这不起作用...... 我需要把它放在 viewdidload 中?

I have my view that contains the UIPickerView...
I tried to make this code:

[self.picker selectRow:rowSelected inComponent:0 animated:true];

to select the row with index rowSelected, but this doesn't work...
I need to put this in viewdidload??

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

世态炎凉 2024-09-21 05:19:36

您自己不调用此方法。当用户在选择器视图中选择一行时,系统会调用它。您应该重写该方法的实现,以在用户选择该组件中的该行时执行您希望发生的任何操作。

You do not call this method yourself. It is called by the system when a user selects a row in the pickerview. You should override the implementation of that method to do whatever you wish should happen when the user selects that row in that component.

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