在以下代码中,我收到错误消息:ARC 不允许将“int”隐式转换为“NSNumber *”。
我做错了什么?
<pre>
<code>
NSDictionary *results = [jsonstring JSONValue];
NSNumber *success = [results objectForKey:@"success"]; // possible values for "success": 0 or 1
if (success == 1) { // ERROR implicit conversion of int to NSNumber disallowed with ARC
}
</code>
</pre>
感谢您的帮助或提示!
问候,丹尼尔