将图像和标签保存并检索到下一个视图。代码
我有一个文本字段,然后我在上面输入一些文本。
当我按下文本字段中的“完成”按钮时,我需要将文本传递到下一个视图。
就是这样,如果我能更具体一点,请告诉我。
I have got a text field, and then I type some text onto it.
I have got a requirement to pass on the text to the next view when I press Done button from the text Field.
This is it, please let me know If I can be more specific.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
“完成”按钮代码
SecondView 中的
:我认为这段代码会帮助您......
Done button code
In SecondView :
I think this code will help You...
1)
将文本字段设置为父视图控制器中的 IBOutlet。
2)
在第二个(或子)视图控制器中创建另一个 UITextField IBOutlet。将其设置为可以赋值的属性。
3)
实例化并按下下一个视图控制器后(触摸“完成”按钮时),将子/第二个视图控制器的文本字段内容设置为父视图控制器的文本字段内容。
1)
Set your text field to an IBOutlet in the parent view controller.
2)
Create another UITextField IBOutlet in the second (or child) view controller. Set it to be a property that can be assigned.
3)
Right after you instantiate and push that next view controller (when the Done button is touched), set the child/second view controller's text field contents to be the contents of the parent view controller's text field.