在另一个视图中显示 UIPickerView 中选定的行
我有两个由 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果每个视图都有自己的视图控制器,则必须使用通知或委托将选定的行传递给另一个视图控制器类。
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.
当您在此方法中选择选择器值委托方法调用时
,您将获得字符串,然后推送/添加新视图并使用属性将此值传递给新视图
如果您有任何问题,请随时提问。
谢谢
when you select the picker value delegate method call
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