2011-11-25 61 views
0

我有UIViewController的子類,它已添加UIview作爲子視圖。 我試圖在webview上檢測觸摸事件,但未能這樣做。UIwebview不響應touchesBegan

-(void)touchesBegan 是應該調用的方法。

任何人都可以幫助我。

在此先感謝。

回答

-2

確保你的UIWebView是第一響應者。當您添加它時,請在網頁視圖上使用becomeFirstResponder(我已經在Apple爲您鏈接了文檔)。

還要確保becomeFirstResponder返回YES。

最後,確保您的視圖控制器的UIView userInteractionEnabled屬性設置爲YES。