我的代码不起作用,我不知道为什么
以下作品:
NSString * words (void) {
return [NSString stringWithFormat:@"You sent %d words\n", 1];
}
但这不起作用:
NSString * words (void) {
return [[[NSString alloc] stringWithFormat:@"You have %d words\n", 1] autorelease];
}
有什么问题,当我发布它时,它就不起作用了。请帮帮我。