1

可能的重复:
在视图控制器之间传递数据

我有 2 个视图控制器:

  1. 指数
  2. 第二

在索引中,我有 2textfieldbutton.

我填写了这个文本字段并按“下一步按钮”到第二个视图,我需要使用数组“显示”这两个文本字段(稍后我将发送 JSON 数据)。我怎样才能最好地实现?请帮忙!最好的问候
伊万。

4

1 回答 1

1

@property将类内声明SecondtextArray. 然后在推送到SecondfromIndex时,您需要设置此属性。

Second.h档案中,

@property(nonatomic, strong) NSArray *textArray;

Index.m档案中,

Second *aSecond = [[Second alloc] init];
aSecond.textArray = @[textField1.text, textField2.text];
//write code to push from Index to Second

现在在课堂Second上,您可以将它用作aSecond.textArray[0]aSecond.textArray[1]

于 2013-01-14T18:50:27.057 回答