NSURLConnection.sendAsynchronousRequest(request,queue: queue,completionHandler:{ (response: NSURLResponse!,data: NSData!,error: NSError!) -> VoID in})
Cannot invoke ‘sendAsynchronousRequest’ with an argument List of type
‘(NSURLRequest,queue: NSOperationQueue,completionHandler:
(NSURLResponse!,NSData!,NSError!) -> VoID)’
你有什么想法有什么不对吗?
使用Swift 1.2和Xcode 6.3,sendAsynchronousRequest:queue:completionHandler:的签名是:class func sendAsynchronousRequest(request: NSURLRequest,queue: NSOperationQueue!,completionHandler handler: (NSURLResponse!,NSError!) -> VoID)
但是,对于Swift 2和Xcode 7 beta,sendAsynchronousRequest:queue:completionHandler:的签名已经更改,现在是:
// Note the non optionals,optionals and implicitly unwrapped optionals differencesclass func sendAsynchronousRequest(request: NSURLRequest,completionHandler handler: (NSURLResponse?,NSData?,NSError?) -> VoID)
因此,转向Swift 2和Xcode 7 beta,您将不得不更改completionHandler参数实现并确保您的队列参数是非可选的.
总结以上是内存溢出为你收集整理的无法使用参数列表在Swift 2中调用“sendAsynchronousRequest”全部内容,希望文章能够帮你解决无法使用参数列表在Swift 2中调用“sendAsynchronousRequest”所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)