you can do it by defining an array property in second viewcontrollers .h file like:
@interface SecondViewController : UIViewController
@property(nonatomic, strong)NSArray *array;
@end
Now in FirstViewconrtoller just pass it
SecondViewController *controller = [[SecondViewController alloc]....]
controller.array = yourArray.//the array you want to pass
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…