2010-02-08 42 views
2

我收到此錯誤的WebView加載此網址:http://www.thumbzine.com/rssfeed.php?vol=104UIWebView的錯誤在iPhone

「錯誤域= WebKitErrorDomain代碼= 102的UserInfo = 0xde6ce0 」幀中斷「」

[webView loadRequest:[NSURLRequest requestWithURL: 
      [NSURL URLWithString:@"thumbzine.com/rssfeed.php?vol=104"]]]; 

什麼是負載這個錯誤是由於?

感謝

+0

你有沒有解決這個問題?我有同樣的問題。看起來像它與「feed://」content(vs「http:// content)有關 – gonso 2011-12-19 09:23:49

回答

-1

試一下這個

NSString *urlText = [NSString stringWithString:@"http://www.thumbzine.com/rssfeed.php?vol=104"]; 
[webView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:urlText]]]; 
+0

我使用了上面的代碼,但是仍然沒有成功我實現了didFailLoadWithError委託mehod,它給出了」Error Domain = WebKitErrorDomain Code = 102 UserInfo = 0xd6eaf0「幀負載中斷」爲錯誤。 – Biranchi 2010-03-10 11:19:22