show/hide this revision's text 3 fixed after dicussion in comments
[string stringByTrimmingCharactersInSet:[NSCharacterSet newlineCharacterSet]]

will trim your string from any kind of newlines, if that's what you want.

[string stringByReplacingOccurrencesOfString:@"\n" withString:@"" options:nil options:0 range:NSMakeRange(0, 1)]

will do exactly what you ask and remove newline if it's the first character in the string

show/hide this revision's text 2 added another example
[string stringByTrimmingCharactersInSet:[NSCharacterSet newlineCharacterSet]]

will trim your string from any kind of newlines, if that's what you want.

[string stringByReplacingOccurrencesOfString:@"\n" withString:@"" options:nil range:NSMakeRange(0, 1)]

will do exactly what you ask and remove newline if it's the first character in the string

show/hide this revision's text 1
[string stringByTrimmingCharactersInSet:[NSCharacterSet newlineCharacterSet]]

will trim your string if that's what you want