我使用Alamofire的网络处理在swift和运行一个奇怪的错误。看起来我们不能通过Method枚举作为参数。 [错误是在方法参数]
private func apiRequest(method: Method,url: String,apiData: [String : AnyObject],completion:(finished: Bool,response: AnyObject?) ->Void) { Alamofire.request(method,url,parameters: apiData).responseJSON{ response in if let JSON = response.result.value { completion(finished: true,response: JSON) } else { completion(finished: false,response:nil) } } }
您必须指定从哪个模块查找对象类型。 调用Alamofire.Method
原文链接:https://www.f2er.com/swift/320821.html