Before Swift 3, my code for creating an AWSTask with a result was something like this:
let results = ["resultOne", "resultTwo"]
let task = AWSTask(result: results)
But using Swift 3, I'm getting this error message from Xcode 8:
Cannot convert value of type '[String]' to expected argument type '_?'
Has anyone else come across this? Thanks so much!