本文介绍了发送数组到明年的ViewController IOS X $ C $Ç的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

可能重复:结果
  

我有2个视图控制器:


  1. 首页


在指数我有2 文本框按钮

我填补这一文本字段,preSS下一步按钮第二种观点,我需要秀这两个文本字段,通过阵列(后面我会送JSON数据)。
我怎样才能最好的实现?请帮忙!
最好的问候结果
伊万。

I fill this text field and press "next button" to second view, I need to "show" this two text field, by using Array (later I will send JSON data).How I can best realize? Please help!Best regards
Ivan.

推荐答案

声明一个 @property textArray 。然后一边力推首页,你需要设置这个属性。

Declare an @property in class Second as textArray. And then while pushing to Second from Index, you need to set this property.

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

现在类,你可以使用它作为 aSecond.textArray [0] aSecond.textArray [1]

Now in class Second, you can use it as aSecond.textArray[0] and aSecond.textArray[1]

这篇关于发送数组到明年的ViewController IOS X $ C $Ç的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-29 20:29