Where would I implement this array to pass?
- by Keeano Martin
I currently build an NSMutableArray in Class A.m within the ViewDidLoad Method.
- (void)viewDidLoad
{
[super viewDidLoad];
//Question Array Setup and Alloc
stratToolsDict = [[NSMutableDictionary alloc] initWithObjectsAndKeys:countButton,@"count",camerButton,@"camera",videoButton,@"video",textButton,@"text",probeButton,@"probe", nil];
…