If I want to store some values that I get from PHP file into NSArray what is the syntax should I use ?
I set my Array like: NSArray *Name;
and i store values in the Array like: _Name = @[@"Tomer", @"Elad",@"Aviel"];
but if I want to store values the come from PHP page like that: "tomer,elad,aviel"
what is the syntax for it? I mean something like that:
NSString *NameValues;
_Name = @[NameValues];