Skip to content

Instantly share code, notes, and snippets.

@brennanMKE
Last active August 15, 2018 06:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save brennanMKE/a65e41fb2caa639aeeb3d49e6885f191 to your computer and use it in GitHub Desktop.
Save brennanMKE/a65e41fb2caa639aeeb3d49e6885f191 to your computer and use it in GitHub Desktop.
VariadicParameter in Objective-C
- (void)log:(nonnull NSString *)format, ... {
va_list args;
va_start(args, format);
NSString *message = [[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