Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はサーバーからの JSON 応答に取り組んでおり、応答データでは、とりわけ、2000 の値を持つ必要がある int である「クレジット」プロパティである必要があります。ただし、使用しようとするとこのプロパティは、180988576 のような値を取得します。しかし、デバッガからプロパティの「説明を出力」すると、次のように表示されます。
Printing description of playerData->_credits: 2000
この値にアクセスするにはどうすればよいですか?
あなたがしなければならないことは、JSONから値を取得するときです
次のように使用します。
[[JSON ObjectForKey:@"Key"]integerValue];
正しい結果が得られます。一度試してみてください。その値を整数変数に割り当てることができます。