I have a method written in Objective-C, which I am replacing with Swift code. But, I do not want to change the method signature as it is used in number of places. I am writing a new version of it in Swift with same signature, which should be called from Obj-C code.
This is the method. +(void)printLog:(NSString *)msgToPrint, ...;
I want a Swift version of this method, which will be called from Obj-C code. Thanks in advance for the help.