获取 UIButton 以将命令发送到另一个视图控制器
问题.. 我目前正在制作一个转换应用程序。我有第一个选项卡,用于输入信息。视图 2 和 3 是来自视图 1 的信息。我遇到了问题..我不确定如何将信息从视图 1 发送到视图 2 和 3。
我已经查看了示例..但是我'我仍然不太明白它的想法。有什么建议吗?
谢谢!
Question..
I'm currently making a conversion app. I have for the first tab where the information is entered. Views 2 and 3 are where the information from view 1. I'm having an issue.. I'm not sure how to send the information from view 1 to view 2 and 3.
I've looked at examples.. but I'm still not quite grasping the idea of it. any suggestions?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不要考虑在视图之间发送信息,而是创建一个包含视图之间共享的所有数据的“模型对象”,并让控制器类在模型更改时负责更新视图。
另外,请查看
NSNotificationCenter
的文档,了解在整个应用程序中“广播”数据更新的方法。Instead of thinking in terms of sending information between views, create a "model object" that contains all the data that is shared between views, and let controller classes take care of updating the views when the model is changed.
Also, take a look at the documentation for
NSNotificationCenter
for a way to "broadcast" data updates throughout your app.