I need to create a String
with format which can convert Int
, Int64
, Double
, etc types into String
. Using Objective-C, I can do it via below way:
NSString *str = [NSString stringWithFormat:@"%d , %f, %ld, %@", INT_VALUE, FLOAT_VALUE, DOUBLE_VALUE, STRING_VALUE];
How to do same with Wwift?
See Question&Answers more detail:os