可能的重复:
在视图控制器之间传递数据
我有 2 个视图控制器:
- 指数
- 第二
在索引中,我有 2textfield
和button
.
我填写了这个文本字段并按“下一步按钮”到第二个视图,我需要使用数组“显示”这两个文本字段(稍后我将发送 JSON 数据)。我怎样才能最好地实现?请帮忙!最好的问候
伊万。
@property
将类内声明Second
为textArray
. 然后在推送到Second
fromIndex
时,您需要设置此属性。
在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]