我在我的应用程序中使用了 Webkit WebView,但它实际上不起作用。我的意思是页面加载但是当我点击页面上的链接时没有任何反应。
这是我的网页:http ://www.beginninghtml.altervista.org
这是我的代码:
在我的AppDelegate.h
:
@property (assign) IBOutlet WebView *webView;
在我的AppDelegate.m
:
-(void)applicationDidFinishLaunching:(NSNotification *)aNotification
{
NSURL *url = [[NSURL alloc] initWithString:@"http://www.beginninghtml.altervista.org"];
NSURLRequest *req = [[NSURLRequest alloc] initWithURL:url];
[[_webView mainFrame] loadRequest:req];
}
它正确加载了页面,但是当我单击页面上的链接时,什么也没有发生。谁能帮助我?