我有这样的网络服务日期:
{
"idlife_stage_question" = 43;//..basically this should be key
"life_stage_idlife_stage" = 1;
"profile_idprofile" = 0;
"question_text" = "example";//..this should be object
sequence = 42;
}
现在我需要每个 JSON 字典中的“idlife_stage_question”和“question_text”,并在 UIPickerView 中加载“question_text”,然后在 UILabel 中显示选定的行文本。此外,我需要为相应的“question_text”获取“idlife_stage_question”,以便稍后将“idlife_stage_question”发送到服务器。我怎么能用 NSDictionary 做到这一点?
编辑:
我的要求是:
- 从 JSON 中获取“idlife_stage_question”和“question_text”。
- 在 NSMutableDictionary 中设置“idlife_stage_question”和“question_text”
- 使用“question_text”填充 UIPicker
- 在标签中显示选定的行文本
- 从 NSMutableDictionary 中获取与“question_text”对应的“idlife_stage_question”,将其发送到服务器。