We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
With Xcode beta 6, Apple changed the .join method to .joinWithSeparator
The fix is quick. In file HTTPUtils.swift:
// change this let full = "?" + "&".join(pairs) // to this let full = "?" + pairs.join("&")
With Xcode beta 6, Apple changed the .join method to .joinWithSeparator
The fix is quick. In file HTTPUtils.swift: