LoginSignup
0
0

More than 5 years have passed since last update.

文字列の途中に改行を入れたりできます。

Last updated at Posted at 2013-11-04

文字列について, 改行を途中に入れるなど様々な書き方ができます.

    NSLog(@"hogefuga");
    NSLog(@"hoge""fuga");
    NSLog(@"hoge" "fuga");
    NSLog(@"hoge"
    "fuga");

出力結果はいずれも同じです。


2013-10-31 17:12:25.712 RSS[3689:60b] hogefuga
2013-10-31 17:12:25.713 RSS[3689:60b] hogefuga
2013-10-31 17:12:25.713 RSS[3689:60b] hogefuga
2013-10-31 17:12:25.714 RSS[3689:60b] hogefuga
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0