2015-08-24 46 views
0

我看到這個問題出現在這個網站很多次,但沒有一個答案幫助我。其他問題的答案是簡單的web視圖的委託設置爲self像這樣UIWebView webViewDidStartLoad並不叫

WebView.delegate = self 

然而,當我這樣做,它給我的錯誤

"cannot assign a value of type 'MainScreen' to a value of type 'UIWebViewDelegate?' 

回答

2

所以我想通了我在打字的時候給出了答案,但是我決定發佈它,以防某人遇到同樣的問題。

解決的辦法是你要「UIWebViewDelegate」添加到您的視圖控制器這樣

class MainScreen : UIViewController, UIWebViewDelegate { 
相關問題