これを少し見ていて、なぜこの単純なコードがエラーを投げているのか理解できませんでした。簡潔にするために短縮:
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"];
誰かが私の間違いを見つけることができますか?