Sample Code for OC and JS Interaction Using JavaScriptCore

Source: Internet
Author: User
JavaScriptCore is an important component of webkit, mainly for parsing JS and providing the execution environment. The following article describes how to use JavaScriptCore to implement interaction between OC and JS. This article is very detailed. For more information, see. # Wiki/48.html "target =" _ blank "> JavaScriptCore is an important component of webkit. It mainly parses JS and provides an execution environment. The following article describes how to use JavaScriptCore to implement interaction between OC and JS. This article is very detailed. For more information, see.

JavascriptCore

JavascriptCore is an important component of webkit, mainly for parsing JS and providing the execution environment. After iOS 7, Apple launched it on the iPhone platform, greatly facilitating js operations.

First, create a webView to read the local html file.

 NSURL* htmlURL = [[NSBundle mainBundle] URLForResource: @"demo" withExtension: @"html"];[_webView loadRequest: [NSURLRequest requestWithURL: htmlURL]];

In the demo, we need to implement four situations

  1. JS calls OC

  2. JS calls OC and passes Parameters

  3. OC calls JS

  4. OC calls JS and passes Parameters

The code in the html file is as follows:

 
  

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.