我在我的iOS应用.html文件。 HTML文件与方法的onClick几格块。 当我对这些块挖掘我调用Web视图中的一些javascript代码,但是我还需要了解一下我的源代码这些事件。
例如,当我点击网络元件上,并且被的onClick称为I需要调用该代码例如一些方法- (void)didTouchedWebElementWithId
我能做到这一点的东西。 谢谢。
我在我的iOS应用.html文件。 HTML文件与方法的onClick几格块。 当我对这些块挖掘我调用Web视图中的一些javascript代码,但是我还需要了解一下我的源代码这些事件。
例如,当我点击网络元件上,并且被的onClick称为I需要调用该代码例如一些方法- (void)didTouchedWebElementWithId
我能做到这一点的东西。 谢谢。
要调用的Objective-C的方法在JS:
下面的链接有助于这样做
如何从Javascript调用目标C方法和数据发送回的Javascript iOS中?
有没有执行的方式,我们通过导航到其他页面和导航过程中进行变通,网页视图代表将观看导航的前缀并执行我们规定的方法。
sample.html
<html>
<head>
<script type='text/javascript'>
function getText()
{
return document.getElementById('txtinput').value;
}
function locationChange()
{
window.location = 'ios:webToNativeCall';
}
</script>
</head>
<body style='overflow-x:hidden;overflow-y:hidden;'>
<h2 style = "font-size:16px;" align='center'>Hi Welcome to Webpage</h2>
<br/>
<p align='center' style = "font-size:12px;">Please Click the button after entering the text</p>
<br/>
<center>
<input type='text' style='width:90px;height:30px;' id='txtinput'/>
</center>
<br/>
<center>
<input type='button' style='width:90px;height:30px;' onclick='locationChange()' value='click me'>
</center>
</body>
</html>
Objective-C代码
当你在HTML页面中单击按钮下面的代表将发射和导航取消,因为我们没有回报和相应的方法被调用
- (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType
{
if ([[[request URL] absoluteString] hasPrefix:@"ios:"]) {
// Call the given selector
[self performSelector:@selector(webToNativeCall)];
// Cancel the location change
return NO;
}
return YES;
}
- (void)webToNativeCall
{
NSString *returnvalue = [self.webviewForHtml stringByEvaluatingJavaScriptFromString:@"getText()"];
self.valueFromBrowser.text = [NSString stringWithFormat:@"From browser : %@", returnvalue ];
}