0

重複の可能性:
あるView Controllerから別のView Controllerに配列を渡す方法は?

firstViewController には、2 番目のビュー コントローラーで使用したい配列がいくつかあります。私はXCodeを初めて使用するため、その方法がわかりません。2つ目のView ControllerのviewDidLoadメソッドにfirstViewControllerのオブジェクトを作成してみました。そして、私は試しました

firstViewController で 5 つの配列を作成しましたが、どちらも NSLogged としてデータを含んでいます。今 SecondViewController.h で

import FirstViewController.h
@property(nonatomic, retain )NSMutablearray *array;

SecondViewController.m @synthesize 配列

-(void) viewDidLoad
 FirstViewController *importArray = [FirstViewController alloc]init];
 importArray.arrayOfFirstViewController = array;
 NSLog(@"%@", array)

しかし、私は常にnullの結果を得ます。

4

0 に答える 0