I am wondering how to convert an NSArray example: ( [43,545,@"Test"] ) to a string in objective-c. An applescript example might be:
set the_array to {43,"Testing", 474343}
set the_array to the_array as string
|
I am wondering how to convert an NSArray example: ( [43,545,@"Test"] ) to a string in objective-c. An applescript example might be:
|
|||||||
|
|
This does what Jason has, but it's simpler:
|
|||||||||||||||||
|
|
One approach would be to iterate over the array, calling the
Another approach would be to do something based on each item's class:
If you want commas and other extraneous information, you can just do:
|
|||||
|