在另一个视图中显示 UIPickerView 中选定的行

发布于 2024-10-29 23:56:26 字数 147 浏览 1 评论 0原文

我有两个由 UITabBarController 控制的视图,其中一个有一个 UIPickerView,我想知道当我启动应用程序时如何看到另一个视图中选择的字符串行,因为带有 UIPickerView 的视图是一个设置视图,我需要在另一个视图中选择的字符串...我该怎么做?...

i have two view controlled by a UITabBarController, and in one there is a UIPickerView, i wanna know how i can see the string row selected in another view when i start the application, beacuse the view with the UIPickerView is a setting View and i need the string selected in the other view...how i can do it?...

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

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

发布评论

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

评论(2

醉梦枕江山 2024-11-05 23:56:26

如果每个视图都有自己的视图控制器,则必须使用通知或委托将选定的行传递给另一个视图控制器类。

if each view has an own view controller you have to pass the selected row to the other view controller class with a notification or a delegate.

心头的小情儿 2024-11-05 23:56:26

当您在此方法中选择选择器值委托方法调用时

- (void)pickerView:(UIPickerView *)pickerView didSelectRow:(NSInteger)row inComponent:(NSInteger)component

,您将获得字符串,然后推送/添加新视图并使用属性将此值传递给新视图
如果您有任何问题,请随时提问。
谢谢

when you select the picker value delegate method call

- (void)pickerView:(UIPickerView *)pickerView didSelectRow:(NSInteger)row inComponent:(NSInteger)component

in this method you get string and then you push/add new view and pass this value to new view using property
if you have any question feel free to ask.
thanks

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