長い文字列をセットする方法

長い文字列を複数行に渡ってセットする方法。
1行目 @"" 2行目以降 "" 最終行 "";
ときにソースコードの可読性が良くなります。

NSString* str = @"The NSString class declares "
"the programmatic interface "
"for an object that manages immutable strings. ";


以下のように、単純改行するとビルドできません。

[Biuld Error]

NSString* str = @"The NSString class declares 
the programmatic interface 
for an object that manages immutable strings. ";