我正在尝试将一个值与存储在 NSString 中的值进行比较,但出现以下错误:
ARC 不允许将 int 隐式转换为 'NSArray *'
这是我的代码:
NSString *tmplabel = [tmpC description];
temp.text = [NSString stringWithFormat: @"%.f", [tmplabel doubleValue]];
if (tmpC >= 10) {
// perform action
}
else {
// perform action
}
我该怎么做这个比较?我只是想看看存储的值是否大于或等于10。
谢谢你的时间 :)