私はウェブやGoogleで検索できるテキストフィールドを作っています。問題は、Googleで複数の単語を検索することができないことです:Stackoverflowを検索することはできますが、たとえばStackoverflowの質問を検索することはできません。コードは次のとおりです。googleで検索する
{
if ([textField.text hasPrefix:@"http"]){
url=[NSURL URLWithString:[textField text]];
request = [NSURLRequest requestWithURL:url];
[webView loadRequest:request];
}else{
stringOne = @"http://www.google.com/search?q=";
NSString *stringTwo = TextField.text;
NSString *googleSearchString =[stringOne stringByAppendingString:stringTwo];
NSURL *google = [NSURL URLWithString:googleSearchString ];
request = [NSURLRequest requestWithURL:google ];
[webView loadRequest:request];
}
}
ありがとうございます!
どうもありがとうございます!私はこの問題の解決策を探していましたが、検索に時間を費やしました!ありがとうございました! – Adri