我正在尝试获取 NSInteger 的值并为其设置 UILabel 值。代码如下:
counter_.text = [NSString stringWithFormat:@"%@", [counterAmount intValue]];
其中 counter_ 是我的标签,而 counterAmount 是我的 NSInteger。我不断收到“接收器类型'NSInteger *'(又名'int *')不是'id'或接口指针,请考虑将其转换为id。
我不太确定如何理解这一点。我很感激你的帮助。