Search code examples
iphonexcodefoursquare

Foursquare venue's category photos issue


i am having trouble about json part of venues, in this picture i am trying to take the prefix and suffix,enter image description here i am putting size between them but my problem is when i try to put them together the link of prefix + size + suffix comes like this -> enter image description here i am taking prefix and suffix in seperate NSMutableArray's but when i try to join them together it's not working. and here is my way to join them.enter image description here

where am i doing this wrong?


Solution

  • so thanks to "Matthias Bauch" i figured it out and here is my answer for my own question :)

               for (int e = 0; e<=[imagePrefix count]-1; e++) {
                    NSLog(@"%@b_32%@", [[imagePrefix objectAtIndex:e] objectAtIndex:0], [[imageSuffix objectAtIndex:e] objectAtIndex:0]);
                }
    

    Thanks guys!