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の結果を得ます。