我有 2 个视图控制器:
索引中的第二个索引我有 2 个文本字段和按钮。
我填写了这个文本字段并按“下一步按钮”到第二个视图,我需要使用数组“显示”这两个文本字段(稍后我将发送 JSON 数据)。
我试过这个:将第二类中的@property 声明为textArray。然后在从 Index 推送到 Second 时,您需要设置此属性。
在 Second.h 文件中,
@property(nonatomic, strong) NSArray *textArray;
在 Index.m 文件中,
Second *aSecond = [[Second alloc] init];
aSecond.textArray = @[textField1.text, textField2.text];
//编写代码从Index推送到Second类现在在类Second中,你可以使用它作为aSecond.textArray[0]和aSecond.textArray[1]
但是如果我切换页面(单击下一步)数组已被清空。
对于切换页面,我使用这个:
SecondPage *SecondPage = [self.storyboard instantiateInitialViewController];
SecondPage = [self.storyboard instantiateViewControllerWithIdentifier:@"SecondPage"];
[self SecondPage animated:YES];
我怎样才能最好地实现?请帮忙!最好的问候伊万。