Skip to content

Instantly share code, notes, and snippets.

@edwardean
Created January 5, 2017 01:46
Show Gist options
  • Save edwardean/e2dfd515280dfb49891f2f1c0b678cdf to your computer and use it in GitHub Desktop.
Save edwardean/e2dfd515280dfb49891f2f1c0b678cdf to your computer and use it in GitHub Desktop.
Fast int to NSString conversion
int i = 123;
char *buffer;
asprintf(&buffer, "%d", i);
NSString *s = [NSString stringWithUTF8String:buffer];
free(buffer);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment