xCode Adding two arrays together

Posted by Frames84 on Stack Overflow See other posts from Stack Overflow or by Frames84
Published on 2010-05-14T15:08:34Z Indexed on 2010/05/14 15:14 UTC
Read the original article Hit count: 157

Filed under:

I call two feeds that both return an NSMutableArray, I then need to make the two arrays into one.

NSMutableArray *array1 = [JSONWrapper downloadFeed]; NSMutableArray *array2 = [JSONWrapper downloadFeed];

// something like: array1 += array2

Thanks

© Stack Overflow or respective owner

Related posts about xcode