Protocol

NSURLSessionDelegate

A protocol that defines methods that URL session instances call on their delegates to handle session-level events, like session life cycle changes. あるプロトコル、それはいくつかのメソッドを定義します、それらはURLセッションインスタンスがそれらの委任先上で呼び出して、セッションライフサイクル変化のようなセッション水準イベントを取り扱うものです。

Declaration 宣言

@protocol NSURLSessionDelegate

Overview 概要

In addition to the methods defined in this protocol, most delegates should also implement some or all of the methods in the NSURLSessionTaskDelegate, NSURLSessionDataDelegate, and NSURLSessionDownloadDelegate protocols to handle task-level events. These include events like the beginning and end of individual tasks, and periodic progress updates from data or download tasks. このプロトコルで定義されるメソッドに加えて、ほとんどの委任先はまたNSURLSessionTaskDelegateNSURLSessionDataDelegate、そしてNSURLSessionDownloadDelegateプロトコルにおけるメソッドのいくつかまたは全てを、タスク水準イベントを取り扱うために実装すべきです。それらは、ここのタスクの始まりおよび終わり、そしてデータまたはダウンロードのタスクからの周期的な進捗の更新のようなイベントを含みます。

Topics 話題

Handling Session Life Cycle Changes セッションライフサイクル変化を取り扱う

Handling Authentication Challenges 認証チャレンジを取り扱う

Relationships 関係

Inherits From 継承元

Inherited By 継承される先

See Also 参照

Working with a Delegate 委任先を扱う