Skip to content

Instantly share code, notes, and snippets.

@neverunlucky
Last active September 5, 2018 09:19
Show Gist options
  • Save neverunlucky/46b39e989b150933b3c5c50f895bac2e to your computer and use it in GitHub Desktop.
Save neverunlucky/46b39e989b150933b3c5c50f895bac2e to your computer and use it in GitHub Desktop.
Obj-C Line Break String
#define __line_break_string__(s) #s
NSString *str = @__line_break_string__(
foo
bar
hello\nworld
);
#undef __line_break_string__
/*
foo bar hello
world
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment