swift iOS - AFNetworking扩展 - 使用网址取消请求,需要https://gist.github.com/danielgomezrico/ae53fae471168dde6c

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了swift iOS - AFNetworking扩展 - 使用网址取消请求,需要https://gist.github.com/danielgomezrico/ae53fae471168dde6c相关的知识,希望对你有一定的参考价值。

extension AFHTTPRequestOperationManager {
    
    func cancelRequestWithUrl(url: String) {
        
        let operations = operationQueue.operations
        
        for operation in operations {
            if let afOperation = operation as? AFHTTPRequestOperation,
                operationUrl = afOperation.request.URL
                where operationUrl.isEquivalent(url) {
                    afOperation.cancel()
                    println("***Canceled")
                    break
            }
        }
        
    }
    
}

以上是关于swift iOS - AFNetworking扩展 - 使用网址取消请求,需要https://gist.github.com/danielgomezrico/ae53fae471168dde6c的主要内容,如果未能解决你的问题,请参考以下文章

iOS笔试面试复习

iOS网络开发之AFNetworking

创建一个依赖外部库的 iOS8 框架

AFNetworking 3.0 GET 请求在 iOS 中保存到类中

iOS 8 在我的应用程序中断开了 SSL 连接 - CFNetwork SSLHandshake failed (-9806)

ios 整理(一)swift和oc的区别