A volte, quando eseguo un'applicazione sul dispositivo da Xcode, provo ad accedere al portachiavi ma non riesce a causa dell'errore -34018. Questo non corrisponde a nessuno dei codici di errore del portachiavi documentati e non può essere riprodotto in modo coerente. (accade forse il 30% delle volte e non mi è chiaro il motivo per cui accade). Ciò che rende molto difficile il debug di questo problema è la totale mancanza di documentazione. Qualche idea su cosa causa questo e come risolverlo? Sto usando Xcode 5 e sto eseguendo iOS 7.0.4 sul dispositivo.
C'è un problema aperto su questo qui: https://github.com/soffes/sskeychain/issues/52
EDIT: aggiunta del codice di accesso al portachiavi per richiesta
Sto usando la SSKeychain
libreria per l'interfacciamento con il portachiavi. Ecco lo snippet.
#define SERVICE @"default"
@implementation SSKeychain (EXT)
+ (void)setValue:(NSString *)value forKey:(NSString *)key {
NSError *error = nil;
BOOL success = NO;
if (value) {
success = [self setPassword:value forService:SERVICE account:key error:&error];
} else {
success = [self deletePasswordForService:SERVICE account:key error:&error];
}
NSAssert(success, @"Unable to set keychain value %@ for key %@ error %@", value, key, error);
if (!success) {
LogError(@"Unable to set value to keychain %@", error);
}
LogTrace(@"Will set keychain account %@. is to nil? %d", key, value == nil);
if (value == nil)
LogWarn(@"Setting keychain %@ to nil!!!", key);
}
+ (NSString *)valueForKey:(NSString *)key {
NSError *error = nil;
NSString *value = [self passwordForService:SERVICE account:key error:&error];
if (error && error.code != errSecItemNotFound) {
NSAssert(!error, @"Unable to retrieve keychain value for key %@ error %@", key, error);
LogError(@"Unable to retrieve keychain value for key %@ error %@", key, error);
}
return value;
}
+ (BOOL)removeAllValues {
LogInfo(@"Completely Reseting Keychain");
return [[self accountsForService:SERVICE] all:^BOOL(NSDictionary *accountInfo) {
return [self deletePasswordForService:SERVICE account:accountInfo[@"acct"]];
}];
}
@end
La stragrande maggioranza delle volte va bene. A volte si verificano errori di asserzione in cui non sono in grado di scrivere o leggere dal portachiavi, causando un errore di asserzione critica.