var cookies: [HTTPCookie]?
func cookies(for: URL) -> [HTTPCookie]?
func sortedCookies (using: [NSSortDescriptor]) -> [HTTPCookie]
Availability 有効性
Technology
func getCookiesFor(_ task: URLSessionTask
,
completionHandler: @escaping ([HTTPCookie
]?) -> Void
)
task
The task performing a request. The cookie storage can use the URL and other properties of this task’s request to determine which cookies to fetch. 要請を実行しているタスク。クッキーストレージは、このタスクの持つ要請のURLおよび他のプロパティを使って、どのクッキーをとってくるか決定することができます。
completionHandler
A completion handler that receives an array of cookies as its argument. クッキーの配列をそれの引数として受け取る完了ハンドラ。
Concurrency Note 並行性注意
You can call this method from synchronous code using a completion handler, as shown on this page, or you can call it as an asynchronous method that has the following declaration: あなたは、このメソッドを同期コードから完了ハンドラを使って呼び出せます、このページで示されるように、またはあなたはそれを以下の宣言を持つ非同期メソッドとして呼び出せます:
For information about concurrency and asynchronous code in Swift, see Calling Objective-C APIs Asynchronously. Swiftにおける並行性と非同期コードについての情報として、Objective-C APIを非同期に呼び出すを見てください。
var cookies: [HTTPCookie]?
func cookies(for: URL) -> [HTTPCookie]?
func sortedCookies (using: [NSSortDescriptor]) -> [HTTPCookie]