1

#https://www.wikifood.eu/wikifood/en/struts/userfoodDB.do?method=getProductOverview&query=4016249502058&startAt=0&limit=5&filter=true&loginname=developer&password=4f14f46f76c4b9be2150be579669e699b79f0093 のような API があります。

バーコードをスキャンするアプリケーションに追加する必要があります。したがって、パラメータークエリをresultTextに変更する必要があります:

#https://www.wikifood.eu/wikifood/en/struts/userfoodDB.do?method=getProductOverview&query="resultText"&startAt=0&limit=5&filter=true&loginname=developer&password=4f14f46f76c4b9be2150be579669e699b79f0093 

次に、DB へのリクエストを作成する必要があります。そして、いくつかのxmlファイルを受け取ります。

1) どうすればできますか? 結果(xmlファイル)を解析してiPhoneに表示するだけでよい場合は?

2) 解析後に結果を ImageView に表示できますか?

私は今 ASIHTTPRequest http://allseeing-i.com/ASIHTTPRequest/How-to-useでこれをやろうとしていますが、実際にはこれ以外に何をすべきかわかりません:

- (IBAction)grabURLInBackground:(id)sender
{
 NSURL *url = [NSURL     URLWithString:@"https://www.wikifood.eu/wikifood/en/struts/userfoodDB.do?method=getProductOverview&query="resultText"&startAt=0&limit=5&filter=true&loginname=NNNNNNNN&password=PPPPPPPPPP"];
ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:url];
[request setDelegate:self];
[request startAsynchronous];

}

- (void)requestFinished:(ASIHTTPRequest *)request
{
// Use when fetching text data
NSString *responseString = [request responseString];

}

- (void)requestFailed:(ASIHTTPRequest *)request
{
NSError *error = [request error];
}
@end

Delegate ファイルまたは Controller ファイルに何か追加する必要がありますか?

ありがとう

すぐにご連絡をお待ちしております

4

1 に答える 1

0

だから私もASIHTTPRequestを使っています。

... requestFinishedからデータを取得したら、 JSON 値を呼び出して NSDictionary に入れるだけです (ここで API をダウンロードしてください) 。

たとえば、次のようになります。

NSDictionary *dic = [[request responseString] JSONValue];

その後、cellForRowAtIndexPath 内のデータにアクセスして、tableView 内のデータを購入できます。

とった?

于 2012-10-14T06:14:38.057 に答える