12

Possible Duplicate:
Convert NSArray to NSString in Objective-C

I have an array of an NSArray myArray, here is the content:

 (
            "<MPConcreteMediaItem: 0x1b7dd0> 8671085923283003246",
            "<MPConcreteMediaItem: 0x1b7e50> 16275751483823231324",
            "<MPConcreteMediaItem: 0x1b7e70> 4976771456698615367"
 )

I used the code below to assign to an NSString myString:

NSString *myString = [myArray description];

And the out put is still as expected:

 (
            "<MPConcreteMediaItem: 0x1b7dd0> 8671085923283003246",
            "<MPConcreteMediaItem: 0x1b7e50> 16275751483823231324",
            "<MPConcreteMediaItem: 0x1b7e70> 4976771456698615367"
 )

Now, say I want to convert myString back to an array named newArray, I used this:

NSArray *newArray = [[NSArray alloc]init];
newArray = [myString componentsSeparatedByString:@","];

But the content of the newArray is now different:

(       
"(
    \"<MPConcreteMediaItem: 0x1b7dd0> 8671085923283003246\"",
        "
    \"<MPConcreteMediaItem: 0x1b7e50> 16275751483823231324\"",
        "
    \"<MPConcreteMediaItem: 0x1b7e70> 4976771456698615367\""
)"
) 

Any idea what I need to do to fix this?

Community
  • 1
  • 1
user523234
  • 14,323
  • 10
  • 62
  • 102

3 Answers3

43

There are two methods

Use

NSString *myString = [myArray componentsJoinedByString:@","]; //instead of [myArray description];
beryllium
  • 29,669
  • 15
  • 106
  • 125
3

This is what the NSArray prints out.

"(
\"<MPConcreteMediaItem: 0x1b7dd0> 8671085923283003246\"",
    "
\"<MPConcreteMediaItem: 0x1b7e50> 16275751483823231324\"",
    "
\"<MPConcreteMediaItem: 0x1b7e70> 4976771456698615367\""
)"

To print out the individual elements in the array try this and see what happens

NSString *myString1 = [myArray objectAtIndex:1];
NSString *myString2 = [myArray objectAtIndex:2];
NSLog(myString1);
NSLog(myString2);
Ashish Agarwal
  • 14,555
  • 31
  • 86
  • 125
2

Maybe I'm missing something but you are doing operations on "C" strings not NSStrings. You need more "@"s.

dnevins
  • 135
  • 5
  • 2
    I am assuming this is not raw code but the output form an `NSLog()` therefore it will not have the `@`'s – Paul.s Nov 20 '11 at 19:58