嗨,我正在尝试让用户在文本字段中的输入在谷歌上得到搜索,这是我目前拥有的代码;
-(IBAction)searchInfo: (id)sender {
NSString *query = [textField.text stringByReplacingOccurrencesOfString:@" " withString:@"+"];
NSURL *url = [NSURL URLWithString:[NSString stringWithFormat:@"http://www.google.com/%@", query]];
NSURLRequest *request = [NSURLRequest requestWithURL:url];
[webView loadRequest:request];;
[textField resignFirstResponder];
我已将文本字段链接到(IBAction)按钮现在我只是试图让用户在搜索字段中输入的任何内容都可以在 Google 上进行搜索并出现在我的 web 视图中。