I am trying to pass a NSMutableArray between two view controller. Please let me know what can i do for this
In the PlaylistViewController.h file I have
Make property of your NSMutableArray and synthesize it.
NSMutableArray
And this after making object of your class.
PlaylistViewController *PLVC = [[PlaylistViewController alloc] init]; PLVC.SongArray=yourAry; [self.navigationController pushViewController:PLVC animated:YES];