我知道如果我想将
Int
String
[0,1,1,0].map{"\($0)"}.reduce(""){$0+$1}
但我不知道如何将
你可以这样做:
let formattedArray = [0,1,1,0].map{String($0)}.joined(separator: ",")