0

I am integrating highchart in iOS . In that I need to send value from javascript(html file) to Objective-C method. (i.e) if I zoom in the highchart in UIWebView, I need to send the zoom cordinates of X axis from javascript to Objective-C by calling an Objective-C method after the zooming is done by the user. Can any one help me in doing this?

Thanks in advance

0

1 Answer 1

1

Try this code & refer this tutorial how to use:

function execute(url) 
{
  var iframe = document.createElement("IFRAME");
  iframe.setAttribute("src", url);
  document.documentElement.appendChild(iframe);
  iframe.parentNode.removeChild(iframe);
  iframe = null;
}

Get more solutions for this from this link

Sign up to request clarification or add additional context in comments.

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.