【发布时间】:2016-02-11 08:36:13
【问题描述】:
如何在点击提交时获得提醒?
我正在使用 WebView..
这里是代码
UIWebView *webView = [[UIWebView alloc] initWithFrame:CGRectMake(0, 0, 320, 480)];
[webView setDelegate:self];
NSString *urlAddress = @“sssssss”;
NSURL *url = [NSURL URLWithString:urlAddress];
NSURLRequest *requestObj = [NSURLRequest requestWithURL:url];
[webView loadRequest:requestObj];
[self.view addSubview:webView];
提前致谢..
【问题讨论】:
标签: ios objective-c uiwebview