0

FirstViewControllerクラスにNSMutable配列があり、その配列をSecondViewControllerクラスに渡します。そして、それをSecondViewControllerクラスで使用したいと思います。私はこれをXcode4.2.1でARCを使って行っています...どうすれば...?プロパティを設定するときに使用したい属性は何ですか...(または)Appdelegateファイルも使用して説明してください...

4

2 に答える 2

0

現在のクラスで

#import "SecondViewController"

 SecondViewController *NextViewController = [[SecondViewController alloc]initWithNibName:@"SecondViewController" bundle:nil];

        NextViewController.nextClasssArray = thisClassarray;

セカンドクラスで.h

@property(nonatomic,retain) NSMutableArray *nextClasssArray;

二等で.m

@synthesize nextClasssArray;
于 2012-04-20T07:52:39.007 に答える
0

これには 2 つの方法があります。

1: appdelegate で NSMutableArray のプロパティを作成し、FirstViewController で配列の値を設定し、SecondViewController で値を取得します。

2: SecondViewController に NSMutableArray のプロパティを作成し、このプロパティを FirstViewController に呼び出しますが、SecondViewController のオブジェクトを作成し、FirstViewController から secondViewController のオブジェクト参照を介してプロパティを呼び出します。

于 2012-04-20T07:52:46.253 に答える