JS原生代码框架EasyJSWebView.zip
EasyJSWebView是类似Android javascriptInterface的uiwebviewjs调用原生代码框架
示例代码:
先建一个MyJSInterface接口@interface MyJSInterface : NSObject - (void) test;
- (void) testWithParam: (NSString*) param;
- (void) testWithTwoParam: (NSString*) param AndParam2: (NSString*) param2;
- (NSString*) testWithRet; @end
用户评论