Skip to content

Instantly share code, notes, and snippets.

@eahrold
Created April 23, 2014 17:40
Show Gist options
  • Save eahrold/11225535 to your computer and use it in GitHub Desktop.
Save eahrold/11225535 to your computer and use it in GitHub Desktop.
formatted strings in objective-c classes
-(void)writeFormatString:(NSString*)format, ...
{
if(format){
va_list args;
va_start(args, format);
NSString *str = [[NSString alloc] initWithFormat:format arguments:args];
va_end(args);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment