有一個NSString,我需要傳遞這個變量加載一個webView,但是應用到這就崩潰了。但是不知道哪裡出錯了?請高手幫忙指教一下。
[webView loadRequest:[NSURLRequest requestWithURL:[NSString
stringWithFormat:@"http://www.website.com/page.php?status=%@", status]]];
非常感謝。
我知道了。requestWithURL
接受NSURL
, 轉換成了NSURL
[webview loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:[NSString stringWithFormat:@"http://www.website.com/page.php?status=%@", status]]]];