So I am trying to implement with kotlin/native the...
# ios
c
So I am trying to implement with kotlin/native the function
String.format(format: String, vararg values: Any?)
, which in objc should be
[NSString stringWithFormat:@"%d:%02d", values];
. So on k/n I tried using
NSString.stringWithFormat()
but it accepts only the
format
argument, I can't find how to insert the string that needs to be formatted. Not sure if I'm doing something wrong tbh
s
Yes, it is known issue.