HTTP リクエストを送信するために、次のように NSURLConnection を使用しています。
NSURLConnection *connection = [[NSURLConnection alloc]
initWithRequest:request
delegate:self
startImmediately:YES];
connectionDidFinishLoading の最後に、完了したばかりの HTTP リクエストに応じて、さまざまな通知を送信する必要があります。ただし、connectionDidFinishLoading 内では、送信されたリクエストのタイプに対する明確な論理識別子がありません。
- (void)connectionDidFinishLoading:(NSURLConnection *)connection {
// here i want to post various notifications, depending on the HTTP request that was completed
}
ここでの最善の解決策は何ですか? ありがとう!