trên mã sau đây tôi nhận được sự thất bại: Implicit chuyển đổi 'int' thành 'NSNumber *' không được phép với ARC.iOS Implicit chuyển đổi int để NSNumber không được phép với ARC
Tôi đang làm gì sai?
<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>
Cảm ơn bạn đã được trợ giúp hoặc gợi ý!
trọng, Daniel
Cảm ơn bạn! Nó hoạt động. – Raja