A volte (raramente ma si verifica) Ho ricevuto l'errore Object has been deleted or invalidated.
, quando provo a modificare il mio oggetto modello con una proprietà o all'interno di AFnetworking Block. Qualcuno può aiutarmi a trovare quello che sto facendo male?Errore: l'oggetto è stato cancellato o invalidato. (Realm)
Errore - Caso 1:
Codice:
- (void)myFunction {
Model *model = [Model objectForPrimaryKey:1];
if (model) {
[self updateModel:model];
}
}
- (void)updateModel:(Model *)model {
AFHTTPRequestOperationManager *manager = [AFHTTPRequestOperationManager manager];
[manager PUT:@"http://www.example.com" parameters:parameters success:^(AFHTTPRequestOperation *operation, id responseObject) {
[[RLMRealm defaultRealm] beginWriteTransaction];
model.updated = YES; // Crash: Object has been deleted or invalidated.
[[RLMRealm defaultRealm] commitWriteTransaction];
} failure:nil];
}
Error - Caso 2:
Proprietà:
@property (strong, nonatomic) Model *model;
Codice:
- (void)myFunction {
Model *model = [Model objectForPrimaryKey:1];
if (model) {
self.model = model;
UIAlertView * alert = [[UIAlertView alloc] initWithTitle:@"" message:@"Would you like to edit the model?" delegate:self cancelButtonTitle:@"Cancel" otherButtonTitles:@"Ok", nil];
[alert show];
}
}
UIAlertView Delegato:
- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex {
if (buttonIndex == 1) {
[[RLMRealm defaultRealm] beginWriteTransaction];
self.model.updated = YES; // Crash: Object has been deleted or invalidated.
[[RLMRealm defaultRealm] commitWriteTransaction];
}
}
Grazie.
Invece di inviare il modello che ho modificato per inviare la chiave primaria del modello, e ogni volta che è necessario cerco di trovarlo prima. Crash è andato e funziona correttamente, grazie! –