How I can create a NSMutableArray (name) dynamically by a NSString value?
e.g. NSString *stringName = @"helloArray1";
Then create the NSMutableArray with the "helloArray1" dynamically.
e.g. NSMutableArray * (--here the stringName / helloArray1---) = [NSMutableArray new];
And then the NSLog:
NSLog(@"%@", (--here the stringName / helloArray1---) );
Thanks for your help