所有你整數值......這可能是一個愚蠢的問題,但我是新來的iOS..I需要我們的幫助.. 我做的Json parsing..to得到一些價值。 。我JSON的反應是: -如何通過JSON解析
{
"_id" = 6001256351188711607;
"access_level" = private;
createdOn = "2012-12-17T07:06:42.09000";
"created_by" = 9514682679942790960941872227340;
description = "";
keywords = "";
location = (
"12.000023",
"77.000012"
);
picture = "http://54120127762218290878972982207449539830674.jpg";
"rel_interests" = (
);
source = "Bank";
"source_url" = "";
title = ipl;
},
);
"location_description" = "";
picture = "http://54252499650705298384658551818639.jpg";
"rel_interests" = (
);
source = "";
"source_url" = "";
title = "Air";
}
我使用此代碼獲得標題: -
[titleArray addObject:[[_arrData objectAtIndex:j]valueForKey:@"title"]];
但是當我做這個位置我得到拋出異常....我怎麼可以獲取位置? 請幫我實現這個...
你的 「JSON」 響應其實不是JSON。是'title = Watch;位置=(「12.000000」,「77.000000」);'NSLogging一個NSDictionary的結果? – tom
這個JSON應該是'location = {「12」,「77」}'。檢查json.org – Osiris
另外,什麼是_arrData?什麼是例外?您需要提供異常堆棧跟蹤。 – tom