Sequence of elements, but “join is unavailable: call the 'joinWithSeparator()'” error

孤街浪徒 提交于 2019-11-29 11:13:46

The error message tells you what the problem is, and it tells you how to fix it. Read the error message! Do what the error message says!

return parts.joinWithSeparator(" ")

The right answer to "why"-part of question is:

Because String's method join was removed in Swift 2. So, actually, it is not "unavailable", it just doesn't exist in Swift 2 at all.

SUDDENLY.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!