如何将数据从 TextField/TextView 发送到另一个视图?
我的第一个视图 (proj1) 有 3 个 TextFields 和 1 个 TextView,现在我想通过单击按钮“完成!”将这些字段中的数据显示到下一个视图。我该怎么做? 我知道这是一个非常基本的问题,但我刚刚开始使用 iPhone 应用程序开发,任何帮助都会非常有帮助。
I have 3 TextFields and 1 TextView in my first view (proj1) now i want to show the data from these Fields to the next view on the click of a button-"Done!". How do i do this?
I know its a very basic question, but i've just started off with iphone app dev, any help would be really helpfull.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
看看这个: http://www.iphonedevsdk.com/forum/iphone-sdk-development/54859-sharing-data- Between-view-controllers-other-objects.html
Take a look at this: http://www.iphonedevsdk.com/forum/iphone-sdk-development/54859-sharing-data-between-view-controllers-other-objects.html
您可以使用 text 属性获取文本字段的值,并使用我的 android 发布的 setText 设置文本视图的值
,希望格式没问题。
You can get the value of a textfield with the text property and set the value of the textview with setText
Posting from my android, hope formatting is fine.
这绝对是一个很大的答案。相反,让我发布一个链接 - 如何共享数据,即在不同视图控制器和其他对象之间传递数据
It's definitely a big answer. Instead let me post a link - How to share data i.e. pass data between different View Controllers and other Objects