I don't know how to use the response data. I try to add it to dictionary but when i print it i get :
Swift.LazyForwardCollection, Swift.AnyObject>>
let manager = AFHTTPRequestOperationManager()
var params : Dictionary = ["username": user, "password": pass, "phone": numb]
manager.POST(
"http://happybakuapi.com/tehmin/api_evelazim/signup.php",
parameters: params,
success: { (operation: AFHTTPRequestOperation!, responseObject: AnyObject!) in
println("JSON: " + responseObject.description)
var jsonResult = responseObject as! Dictionary<String, AnyObject>
println(jsonResult.values)
},
failure: { (operation: AFHTTPRequestOperation!, error: NSError!) in
println("Error: " + error.localizedDescription)
}
)
you can use response of dictionary as below.
Response Dictionary :