I was using a NSMutableArray and realized that using a dictionary is a lot simpler for what I am trying to achieve.
NSMutableArray
I want to save a key as a NSSt
NSSt
For reference, you can also utilize initWithDictionary to init the NSMutableDictionary with a literal one:
initWithDictionary
NSMutableDictionary
NSMutableDictionary buttons = [[NSMutableDictionary alloc] initWithDictionary: @{ @"touch": @0, @"app": @0, @"back": @0, @"volup": @0, @"voldown": @0 }];