如何调配NSURLSession类方法dataTaskWithUrl

时间:2016-02-23 06:59:07

标签: ios swift swizzling method-swizzling

我一直在尝试调用NSURLSession类方法dataTaskWithRequest但是无法完成它

extension NSURLSession{
public override class func initialize() {
    struct Static {
        static var token: dispatch_once_t = 0
    }

    if self !== NSURLSession.self {
        return
    }

    dispatch_once(&Static.token) {
        let originalSelector = Selector("dataTaskWithRequest:completionHandler:")
        let swizzledSelector = Selector("my_dataTaskWithRequest:completionHandler:")

        let originalMethod = class_getInstanceMethod(self, originalSelector)
        let swizzledMethod = class_getInstanceMethod(self, swizzledSelector)

        let didAddMethod = class_addMethod(self, originalSelector, method_getImplementation(swizzledMethod), method_getTypeEncoding(swizzledMethod))

        if didAddMethod {
            class_replaceMethod(self, swizzledSelector, method_getImplementation(originalMethod), method_getTypeEncoding(originalMethod))
        } else {
            method_exchangeImplementations(originalMethod, swizzledMethod)
        }
    }
}

// Swizzled Method
func my_dataTaskWithRequest(request: NSURLRequest,completionHandler: (NSData?, NSURLResponse?, NSError?)) -> NSURLSessionDataTask {

    print("Inside Swizzled Method")

    return my_dataTaskWithRequest(request,completionHandler: completionHandler)
}
}

提前致谢!!

2 个答案:

答案 0 :(得分:1)

我必须将我的数据以JSON(或NSDictionary)格式上传到服务器。
我做过这样的事情......

let urlPath:String = apiURL + apiVersion + url + "?api_key=" + apiKey
//  OR
let urlPath:String = "your url string"
let url = NSURL(string: urlPath)
let session = NSURLSession.sharedSession()

let task = session.dataTaskWithURL(url!, completionHandler: {(data, reponse, error) in
println("Task completed")
// rest of the function...
})

task.resume()


如需更多或相关答案,请访问链接
How to swizzle in private method

我希望它可以帮到你

答案 1 :(得分:-1)

// i hope it may be help you
  extension NSURLSession{
  public override class func initialize() {
   struct Static {
      static var token: dispatch_once_t = 0
   }

  if self !== NSURLSession.self {
      return
  }

  dispatch_once(&Static.token) {
 let method1: Method = class_getInstanceMethod(self,Selector("dataTaskWithRequest:completionHandler:"));
 let method2 = class_getInstanceMethod(self, Selector("my_dataTaskWithRequest:completionHandler:"));
  method_exchangeImplementations(method1, method2);
}
}
// Swizzled Method
func my_dataTaskWithRequest(request: NSURLRequest,completionHandler: (NSData?, NSURLResponse?, NSError?)) -> NSURLSessionDataTask {

print("Inside Swizzled Method")

return my_dataTaskWithRequest(request,completionHandler: completionHandler)
}
}
相关问题