You just need to add this:
//put this on alamofire.swift, then call it as Alamofire.manager.your_method struct Alamofire { static let manager = Manager.sharedInstance }
And after you can use this method:
Alamofire.manager.request(.GET, videoUrl, parameters: ["foo": "bar"]) .response { (request, response, data, error) in println(request) println(response) println(error) }
Jerc
source share