Instance Method インスタンスメソッド

initWithUser:password:persistence:

Creates a URL credential instance initialized with a given user name and password, using a given persistence setting. URL資格情報インスタンスを作成します、ある与えられたユーザ名とパスワードで初期化されます、ある与えられた存続設定を使います。

Declaration 宣言

- (instancetype)initWithUser:(NSString *)user 
                    password:(NSString *)password 
                 persistence:(NSURLCredentialPersistence)persistence;

Parameters パラメータ

user

The user for the credential. 資格情報に対するユーザ。

password

The password for user. userに対するパスワード。

persistence

A NSURLCredentialPersistence value indicating whether the credential should be stored permanently, for the duration of the current session, or not at all. 資格情報が格納されるのは、永久に、現在のセッションの間に対して、または少しもされないべきかを指し示しているNSURLCredentialPersistence値。

Return Value 戻り値

An instance of NSURLCredential, initialized with user name user, password password, and using persistence setting persistence. NSURLCredentialのあるインスタンス、それはユーザ名user、パスワードpassword、そして持続性設定persistenceを使って初期化されます。

Discussion 議論

If persistence is NSURLCredentialPersistencePermanent, the credential is stored in the keychain. If persistence is NSURLCredentialPersistenceSynchronizable, it is also stored to the user’s other devices. persistenceNSURLCredentialPersistencePermanentならば、資格情報はキーチェーンの中に格納されます。persistenceNSURLCredentialPersistenceSynchronizableならば、それはまたユーザのもつ他のデバイスに格納されます。

See Also 参照

Creating a Credential 資格情報を作成する