#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 ファイルに何か追加する必要がありますか?
ありがとう
すぐにご連絡をお待ちしております