This line has always been working fine for me for making Alamofire Requests and getting the JSON response.
Alamofire.request(req).responseJSON() {
(request, response, data, error) in
// ....
}
After upgrading to XCode 7 and converting the Project to Swift 2.0, all the lines of code that have my Alamofire request are not showing this error:
'(_, _, _, _) -> Void' is not convertible to 'Response<AnyObject, NSError> -> Void'