Da un po 'di tempo lo stiamo osservando e non comprendendo perché questo semplice bit di codice genera un errore. Abbreviato per brevità:Aggiunta di stringhe a NSMutableString
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"];
Qualcuno può individuare il mio errore?
Qual è l'errore esatto? – outis