Removing new line characters from NSString

Viewed 59896

I have a NSString like this:

Hello 
World
of
Twitter
Lets See this
>

I want to transform it to:

Hello World of Twitter Lets See this >

How can I do this? I'm using Objective-C on an iPhone.

5 Answers
Related