UIWebView を使用して iPhone でカスタム検索を作成したいと思います。
{query}
例:以下の行をユーザーが入力したものに置き換えます。
URL:
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];