将图像和标签保存并检索到下一个视图。代码

发布于 2024-12-18 02:59:21 字数 100 浏览 7 评论 0原文

我有一个文本字段,然后我在上面输入一些文本。

当我按下文本字段中的“完成”按钮时,我需要将文本传递到下一个视图。

就是这样,如果我能更具体一点,请告诉我。

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 技术交流群。

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

发布评论

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

评论(2

打小就很酷 2024-12-25 02:59:21

“完成”按钮代码

- (IBAction)secondview {
    secondview *second = [[secondview alloc] initWithNibName:@"secondview" bundle:nil];
    second.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal;
    NSLog(@"%@",[textField text]);
    second.string2 = [NSString stringWithFormat:@"%@", [textField text]];
    [self presentModalViewController:second animated:YES];
}

SecondView 中的

- (void)viewDidLoad {
    [super viewDidLoad];
    textField.text = string2;
}

:我认为这段代码会帮助您......

Done button code

- (IBAction)secondview {
    secondview *second = [[secondview alloc] initWithNibName:@"secondview" bundle:nil];
    second.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal;
    NSLog(@"%@",[textField text]);
    second.string2 = [NSString stringWithFormat:@"%@", [textField text]];
    [self presentModalViewController:second animated:YES];
}

In SecondView :

- (void)viewDidLoad {
    [super viewDidLoad];
    textField.text = string2;
}

I think this code will help You...

作死小能手 2024-12-25 02:59:21

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.

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