Skip to content

Instantly share code, notes, and snippets.

@leilee
Created April 26, 2018 12:29
Show Gist options
  • Save leilee/fddd96317d464e39fa845213a551c332 to your computer and use it in GitHub Desktop.
Save leilee/fddd96317d464e39fa845213a551c332 to your computer and use it in GitHub Desktop.
NSString StringWithFormat using asprintf
#define STRING_WITH_FORMAT(format, ...) \
({ \
char *buffer; \
asprintf(&buffer, format, ##__VA_ARGS__); \
NSString* result = [NSString stringWithUTF8String:buffer]; \
free(buffer); \
result; \
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment