
エントリーの編集

エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
Checking a null value in Objective-C that has been returned from a JSON string
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています

- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
Checking a null value in Objective-C that has been returned from a JSON string
I have a JSON object that is coming from a webserver. The log is something like this: { "status":... I have a JSON object that is coming from a webserver. The log is something like this: { "status":"success", "UserID":15, "Name":"John", "DisplayName":"John", "Surname":"Smith", "Email":"email", "Telephone":null, "FullAccount":"true" } Note the Telephone is coming in as null if the user doesn't enter one. When assigning this value to a NSString, in the NSLog it's coming out as <null> I am assigning