LoginSignup
2
2

More than 5 years have passed since last update.

[RestKit] 送信中のリクエストをキャンセルする

Posted at

RestKit 0.10.2の話。

RKObjectManagerを介して送信中のリクエストをキャンセルしたい。

すべてのリクエストをキャンセルするには以下のように呼び出せばよい。

[[[[RKObjectManager sharedManager] client] requestQueue] cancelAllRequests];

特定のdelegateオブジェクトに紐付いたリクエストのみをキャンセルするには以下のように呼び出す。

[[[[RKObjectManager sharedManager] client] requestQueue] cancelRequestsWithDelegate:self];
2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2