应该为 UIPickerView 实现多少次相同的数据源协议方法

发布于 2024-11-02 04:46:56 字数 167 浏览 0 评论 0原文

如果我在同一个视图控制器中有 2 个选择器,我应该实现这个方法多少次:

- (NSInteger)pickerView:(UIPickerView *)thePickerView numberOfRowsInComponent:(NSInteger)component

If I have 2 pickers in the same viewcontroller, how many times should I implement this method:

- (NSInteger)pickerView:(UIPickerView *)thePickerView numberOfRowsInComponent:(NSInteger)component

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

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

发布评论

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

评论(1

南巷近海 2024-11-09 04:46:56

您只能在单个类中实现给定方法一次。如果您想使用一个控制器支持两个选择器,只需让委托方法查看 thePickerView 参数,该参数会告诉您哪个选择器正在请求数据。

You can only implement a given method once in a single class. If you want to support two pickers with a single controller, just have the delegate methods look at the thePickerView parameter, which tells you which picker is asking for data.

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