J'ai regardé cela depuis un certain temps maintenant et je ne comprends pas pourquoi ce simple bout de code génère une erreur. Raccourci pour la brièveté :
NSMutableString *output;
...
@property (nonatomic, retain) NSMutableString *output;
...
@synthesize output;
...
// logs "output start" as expected
output = [NSMutableString stringWithCapacity:0];
[output appendString:@"output start"];
NSLog(@"%@", output);
...
// error happens here
// this is later on in a different method
[output appendString:@"doing roll for player"];
Quelqu'un peut-il repérer mon erreur ?