NSURLCredentialStorageについて学習していて、状況があります。アプリを開発しているときに、たまたま次のコードを使用して2つのユーザー名とパスワードを保存しました。私が抱えている問題は、2セットのuname/pwordコンボを保存する必要がないことです。だから私の質問は、どうすればストレージをリセットして新しく始めることができますか?
クレデンシャルをロードする方法は次のとおりです。ObjectiveResourceの例からロードを使用していて、インデックス0でオブジェクトを取得していることに注意してください。オブジェクトのペアは1つだけにします。
- (void)loadCredentialsFromKeychain {
NSDictionary *credentialInfo = [[NSURLCredentialStorage sharedCredentialStorage] credentialsForProtectionSpace:[self protectionSpace]];
// Assumes there's only one set of credentials, and since we
// don't have the username key in hand, we pull the first key.
NSArray *keys = [credentialInfo allKeys];
if ([keys count] > 0) {
NSString *userNameKey = [[credentialInfo allKeys] objectAtIndex:0];
NSURLCredential *credential = [credentialInfo valueForKey:userNameKey];
self.login = credential.user;
self.password = credential.password;
}
}