Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to convert (or copy?) a NSMutableArray into a NSString. I guess my problem is that I don't really understand the structure of a NSString. In my limited knowledge, a string could look like this: in iphone

share|improve this question
Means, you want to append the array elements to form a NSString? – Aadhira Jan 10 '12 at 11:30
Possible duplicate stackoverflow.com/questions/2995391/… – Peter Kelly Jan 10 '12 at 11:31
1  
Actually you are spamming SO with similar kind of questions stackoverflow.com/questions/8800747/…, stackoverflow.com/questions/8787505/… and the current one. Just make sure what you want and ask clearly. – Aadhira Jan 10 '12 at 11:51

2 Answers

up vote 2 down vote accepted

take the NSMutableString and append every array string into your string

like

string = [string appendString:[NSString stringWithFormat:"%@", [array objectAtIndex:i]]];
share|improve this answer
That would work but is horribly inefficient. – Stephen Darlington Jan 10 '12 at 11:38
5  
it is quite interesting that the worse answer got accepted. Dear Future Reader: Please check Leena's answer. – ikinci viking Jan 10 '12 at 13:38
oh, and actually that code is wrong, -appendString: works in-place and there-for does not return anything, while NSStrings's -stringByAppendingString: returns a new string. – ikinci viking Jan 10 '12 at 15:56
@vikingosegundo: how can you say that appendString is not working? i have tested and it return string with all append string. NSMUtableString support two method 1)appendString 2)appendFormat – NSNull Jan 11 '12 at 4:38
3  
the signature is - (void)appendString:(NSString *)aString, so it is NOT returning a string. – ikinci viking Jan 11 '12 at 12:42
show 9 more comments

Try this code:-

 NSString *string = [array componentsJoinedByString:@","];
share|improve this answer
I edited the code that it fit to coding conventions. – ikinci viking Jan 10 '12 at 11:37
thanks for telling my mistake. – Leena Jan 10 '12 at 11:38
Nice Answer... thanks Leena – Shivam S.Kara Oct 4 '12 at 6:31

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.