我有2個視圖控制器:發送陣列的ViewController的iOS的xcode
指數 二 在索引我有2個文本框和按鈕。
我填充這個文本字段,然後按下「下一個按鈕」到第二個視圖,我需要通過使用Array(稍後我將發送JSON數據)「顯示」這兩個文本字段。
我試過這個: 在class Second中聲明@property作爲textArray。然後在從索引推到Second時,需要設置此屬性。
在Second.h文件,
@property(nonatomic, strong) NSArray *textArray;
在Index.m文件,
Second *aSecond = [[Second alloc] init];
aSecond.textArray = @[textField1.text, textField2.text];
//寫代碼從指數推到二 現在在課堂其次,你可以用它as aSecond.textArray [0]和aSecond.textArray [1]
但是,如果我切換頁面(單擊下一步)數組已被禁止。
,因爲我用這個開關頁:
SecondPage *SecondPage = [self.storyboard instantiateInitialViewController];
SecondPage = [self.storyboard instantiateViewControllerWithIdentifier:@"SecondPage"];
[self SecondPage animated:YES];
我怎樣才能最好的實現?請幫忙!最好的問候 伊萬。
永遠不要將您的類名稱作爲您的實例變量名稱。它會導致很多問題。 –
你有沒有分配你的數組? – Rushi