I have an array of strings in swift, and I thought I could do:
array.join(",") to return a list of items separated by commas
The error I get is: Array<String> not convertible to 'String'
How can I do it correctly as little code as possible.
I can do this with a loop to build a string, but I thought there was an easier way to do this.
Jeef source share