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
var str = "\(INT_VALUE) , \(FLOAT_VALUE) , \(DOUBLE_VALUE), \(STRING_VALUE)"