多组件选择器视图

发布于 2024-10-20 16:24:56 字数 57 浏览 1 评论 0 原文

我正在开发带有选择器视图的项目。我里面有两个组件。我想根据第一个视图中所做的选择加载第二个组件内容。

I am working on project with picker view. I have two components in it. I want to have the second component contents loaded based the selection made in the first view.

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

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

发布评论

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

评论(1

一梦浮鱼 2024-10-27 16:24:56

当为第二个组件调用时,您的 pickerView:numberOfRowsInComponent:pickerView:titleForRow:forComponent: 必须检查第一个组件的值以确定要返回的内容。

pickerView:didSelectRow:inComponent: 当为第一个组件调用时,必须在选择器上调用 reloadComponent: 以告诉它重新加载第二个组件的数据。

Your pickerView:numberOfRowsInComponent: and pickerView:titleForRow:forComponent: when called for the second component will have to check the value of the first component to determine what to return.

pickerView:didSelectRow:inComponent: when called for the first component will have to call reloadComponent: on the picker to tell it to reload the data for the second component.

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