I need to create a string with format which can convert int, long, double etc. types into string. Using Obj-C, I can do it via below way.
NSString *str = [NS
nothing special
let str = NSString(format:"%d , %f, %ld, %@", INT_VALUE, FLOAT_VALUE, LONG_VALUE, STRING_VALUE)