这玩意,嗯,是kotlin抄袭swift还是swift抄袭kotlin啊,kotlin的解构跟这个基本上一模一样啊。
2021-08-31
关于获取索引值的问题,新的swift版本需要这样写。
let index = str.index(str.startIndex, offsetBy:5);
str[index]
获得结果 ","
let index = str.index(str.startIndex, offsetBy:5);
str[index]
获得结果 ","
2019-03-12