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: