我有这样的 if 语句
@property (nonatomic) NSUInteger *theScore;
if (hint.hidden) {
theScore += (2);
} else {
theScore += (1);
}
NSLog(@"Score changed");
score.text = [NSString stringWithFormat:@"%d", theScore];
但不是 theScore 增加 2 或 1,而是增加 8 或 4
有任何想法吗?