我在FirstViewController类中有一个NSMutable数组,我想将该数组传递给SecondViewController类。我想在SecondViewController类中使用它。我正在使用ARC在Xcode 4.2.1中这样做......我怎么能......?设置属性时我想要使用的属性是什么...(或者)使用Appdelegate文件解释我...
答案 0 :(得分:0)
#import "SecondViewController"
SecondViewController *NextViewController = [[SecondViewController alloc]initWithNibName:@"SecondViewController" bundle:nil];
NextViewController.nextClasssArray = thisClassarray;
在第二课.h
@property(nonatomic,retain) NSMutableArray *nextClasssArray;
在第二课.m
@synthesize nextClasssArray;
答案 1 :(得分:0)
有两种方法可以做到这一点。
1:在appdelegate中为NSMutableArray创建一个属性,在FirstViewController中设置数组的值并在SecondViewController中检索值。
2:在SecondViewController中为NSMutableArray创建一个属性,并为FirstViewController调用此属性,但调用SecondViewController的对象,并通过FirstViewController的secondViewController对象引用调用该属性。