My problem is that I know NSString may used as an array and in my code I wrote it as such:
NSString *loadBackground[3];
loadBackground[0] = @"background1";
loadBackground[1] = @"background2";
loadBackground[2] = @"background3";
Is it possible to write the same code in one line instead of 4 lines?
Please use NSArray instead of c-arrays
accessing a string: