-1

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

maazza
  • 7,016
  • 15
  • 63
  • 96
petrhung9
  • 91
  • 7

1 Answers1

0

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];
Bista
  • 7,869
  • 3
  • 27
  • 55
  • I wont say this is the perfect solution for you, but please explain your question a bit more for further help. – Bista Jan 12 '16 at 07:26
  • Thanks, but I did know keys and values are array objects, the problem here is what exactly are they, i mean the string in array – petrhung9 Jan 12 '16 at 07:31
  • Which library of Vitamio are you using, yixia ? – Bista Jan 12 '16 at 07:32
  • Seems like I wont be able to help you on this. Please update your question with information you have provided in this comment section for others to help you. – Bista Jan 12 '16 at 07:39
  • 1
    Thanks for your help – petrhung9 Jan 12 '16 at 07:52
  • pls give suggestin if possibe on this question i am facing isue since one week http://stackoverflow.com/questions/35655245/unable-to-play-rtmp-live-video-stream-in-ios – kirti Chavda Mar 09 '16 at 13:29