The Vitamio for iOS has API
- (void)setOptionsWithKeys:(NSArray *)keys withValues:(NSArray *)values;
So anyone can tell me what are the keys and values here? Thanks
The Vitamio for iOS has API
- (void)setOptionsWithKeys:(NSArray *)keys withValues:(NSArray *)values;
So anyone can tell me what are the keys and values here? Thanks
Basically reading the syntax I can say something like this:
NSArray *keys = @[@"name", @"age", @"phone"];
NSArray *values = @[@"John Smith", @"42", @"0123456789"];
[className setOptionWithKeys:keys withValues:values];