AFHTTPRequestOperation Cancel Request

前端 未结 2 1809
遥遥无期
遥遥无期 2021-01-19 17:03

Is there a way to cancel a AFHTTPRequestOperation? I am using it to download a PLIST for example. So I was planning to have a button to cancel the download or task. Is there

2条回答
  •  梦谈多话
    2021-01-19 17:26

    You can use:

    [operation cancel];
    

    This is an NSOperation method that's implemented by AFNetworking.

提交回复
热议问题