shouldStartLoadWithRequest

shouldStartLoadWithRequest

我正在尝试调用shouldStartLoadWithRequest但没有被调用,我已经在google上找到了,我必须将delete设置为uiwebview

我正在使用标签栏项目

我有加

@interface MainView : UIViewController <UIWebViewDelegate




[webview setDelegate:self];中的viewDidLoad:

但仍然没有被召唤

请帮忙

最佳答案

该问题的可能原因是您可能正在通过loadHTMLString加载HTML

编辑:

我相信,如果是从字符串加载的,则不会有请求,因此永远不会触发shouldStartLoadWithRequest。

我不确定是否已记录。

09-11 06:20