我有这个可可触摸代码,你按下一个按钮,一个 NSInteger 用数字 1 添加它自己,然后一个标签变成 NSInteger 值
这是代码
- (IBAction)out:(id)sender {
outnum = outnum + 1;
self.outnumberlabel.text = [[NSString alloc] initWithFormat: @"%d", outnum];
一切正常,但 NsInteger 在加 1 时加 4
当我投入
outnum = outnum + 2;
标签变为 8
它四分五裂有没有人知道为什么以及如何解决它