How should I invoke the following method? The method belongs to a class that prints logs.
func log(format: String!, withParameters valist: CVaListPointer)
What I want to achieve, would look like this in Objective-C:
NSLog(@"Message %@ - %@", param1, param2);
Any ideas?
CVarArg
instead ofCVaListPointer
? – Arni