NSURL *urlString = [NSURL URLWithString:urlAddress];
//URL Requst Object
NSURLRequest *requestObj = [NSURLRequest requestWithURL:urlString];
//Load the request in the UIWebView.
[self.webview loadRequest:requestObj];
我有上面的代码。出于某种原因,诸如“ http://linkedin.com/view?id=3 ”之类的 url,例如,带有问号的 url 没有在 webview 中正确加载。我应该怎么办?