看來resultField的iOS是一個沒有價值的人。將研究這一點,但我仍然感謝任何意見。
原貼
我已經設置想出一個基本的iOS應用,只是使搜索請求的任務,然後顯示爲大學工作的結果。我試圖使用谷歌自定義搜索引擎,但永遠不能讓它在iPhone上運行,所以我不得不求助於貶低的谷歌網頁搜索API(講師可以這麼做)。
現在,我可以提出請求,並按照預期返回JSON數據,我現在必須解析這些數據。可悲的是我只有一個星期做這件事,這是瘋狂的,因爲我從來沒有使用過JSON。
我想要的是如果有人能夠幫助我在一個或兩個指針的基礎上脫身,甚至可以獲得對JSON數據的基本解析。
我環視了一下Stackoverflow,看到了一些可能有用的東西,例如所選答案here中的分解結構。
的人把這個在一起,這在代碼中所示,當有一定的道理對我說:
一個偉大的結構解釋
dictionary (top-level)
sethostname (array of dictionaries)
dictionary (array element)
msgs (string)
status (number)
statusmsg (string)
warns (array)
??? (array element)
可悲的是,我不能甚至開始做同樣的與我的應用程序中生成的代碼。它採用與此示例代碼類似的形式,由google提供 - 我不是Paris Hilton粉絲!
來自Google的示例代碼。
{"responseData": {
"results": [
{
"GsearchResultClass": "GwebSearch",
"unescapedUrl": "http://en.wikipedia.org/wiki/Paris_Hilton",
"url": "http://en.wikipedia.org/wiki/Paris_Hilton",
"visibleUrl": "en.wikipedia.org",
"cacheUrl": "http://www.google.com/search?q\u003dcache:TwrPfhd22hYJ:en.wikipedia.org",
"title": "\u003cb\u003eParis Hilton\u003c/b\u003e - Wikipedia, the free encyclopedia",
"titleNoFormatting": "Paris Hilton - Wikipedia, the free encyclopedia",
"content": "\[1\] In 2006, she released her debut album..."
},
{
"GsearchResultClass": "GwebSearch",
"unescapedUrl": "http://www.imdb.com/name/nm0385296/",
"url": "http://www.imdb.com/name/nm0385296/",
"visibleUrl": "www.imdb.com",
"cacheUrl": "http://www.google.com/search?q\u003dcache:1i34KkqnsooJ:www.imdb.com",
"title": "\u003cb\u003eParis Hilton\u003c/b\u003e",
"titleNoFormatting": "Paris Hilton",
"content": "Self: Zoolander. Socialite \u003cb\u003eParis Hilton\u003c/b\u003e..."
},
...
],
"cursor": {
"pages": [
{ "start": "0", "label": 1 },
{ "start": "4", "label": 2 },
{ "start": "8", "label": 3 },
{ "start": "12","label": 4 }
],
"estimatedResultCount": "59600000",
"currentPageIndex": 0,
"moreResultsUrl": "http://www.google.com/search?oe\u003dutf8\u0026ie\u003dutf8..."
}
}
, "responseDetails": null, "responseStatus": 200}
這是到目前爲止的代碼,正如你就會很快學會並沒有真正做很多其他比類似於上面的代碼返回代碼。
**My code.**
// query holds the search term
query = [query stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
//append theQuery with search URL
NSString *tempString = [NSString stringWithFormat:@"%@/%@", @"https://ajax.googleapis.com/ajax/services/search/web?v=1.0&q=", theQuery];
//Create NSURL out of tempString
NSURL *url = [NSURL URLWithString:tempString];
// Create a request object using the URL.
NSURLRequest *request = [NSURLRequest requestWithURL:url];
// Prepare for the response back from the server
NSHTTPURLResponse *response = nil;
NSError *error = nil;
NSData *responseData = [NSURLConnection sendSynchronousRequest:request returningResponse:&response error:&error];
NSDictionary *dictionary = [NSJSONSerialization JSONObjectWithData:responseData options:NSJSONWritingPrettyPrinted error:&error];
NSDictionary* resultField = [NSDictionary dictionaryWithDictionary:[dictionary objectForKey:@"results"]];
// Send a synchronous request to the server (i.e. sit and wait for the response)
// Check if an error occurred
if (error != nil) {
NSLog(@"%@", [error localizedDescription]);
// Do something to handle/advise user.
}
// Convert the response data to a string.
NSString *responseString = [[NSString alloc] initWithData:responseData encoding:NSUTF8StringEncoding];
NSArray *results = [dictionary objectForKey:@"results"];
//set label's text value to responseString's value.
endLabel.text = responseString;
現在我遇到的主要問題是結果數組始終爲空。我真的可以在這裏向正確的方向提出一個觀點。謝謝。
您是否檢查了各種對象的值?我猜你的responseData正在填充正確,但然後是字典它應該是什麼? – 2012-07-27 21:40:38
好點,謝謝。我檢查了不同變量的值,resultField是最後一個結果爲null的變量。這給了我一些工作,謝謝。 – 2012-07-27 23:41:59