我想使用 UIWebView 在 iPhone 中创建自定义搜索。
示例:将{query}
下面一行中的内容替换为用户输入的内容。
网址:
http://stackoverflow.com/search?q={query}&submit=search
最终代码:
[super viewDidLoad];
_webView.delegate = self;
NSString *queryString = _searchField.text;
NSString *request2 = [NSString stringWithFormat:@"http://stackoverflow.com/search?q=%@&submit=search", queryString];
NSURLRequest *requestURL = [NSURLRequest requestWithURL:[NSURL URLWithString:request2]];
[_webView setScalesPageToFit:YES];
[self.webView loadRequest:requestURL];