如何在IOS平台上使用js直接调用OC方法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在IOS平台上使用js直接调用OC方法相关的知识,希望对你有一定的参考价值。
本例子是为了让大家能快速开发出OC调用JS功能的一个简单的例子。1、准备一个本地化的html网页,如jsios.html
<script type="text/javascript">
function postStr()
return document.getElementById("text1").value;
//return "javaScript返回值啦";
</script>
2、将此html文件放到项目代码目录里面,如图:
3、拖一个UIWebView控件和UIButton控件到xxxViewController对应的.xib或.storyboard视图的UIView上;
在xxxViewController的.h文件中分别声明UIWebView类型变量和UIButton类型的变量,以及一个按钮点击事件(并且跟视图里面的控件连线),
并且添加一个UIWebViewDelegate类型的委托。<喎�"http://www.2cto.com/kf/ware/vc/" target="_blank" class="keylink">vcD4KPHA+eHh4Vmlld0NvbnRyb2xsZXIuaM7EvP7E2sjdyOfPwqO6PC9wPgo8cD48L3A+CjxwIGNsYXNzPQ=="p1">
#import
@interface ViewController : UIViewController
@property(nonatomic,retain) IBOutlet UIWebView *webview;
@property(nonatomic,retain) IBOutlet UIButton *button;
-(IBAction)IOS_JS:(id)sender;
@end
4、在xxxViewController.m文件中实现通过点击事件,调用javaScript的方法并取得返回值。
代码如下:
#import "ViewController.h"
@interface ViewController ()
@end
@implementation ViewController
@synthesize webview;
- (void)viewDidLoad
[super viewDidLoad];
//设置webView
webview.backgroundColor = [UIColor clearColor];
//webview.scalesPageToFit =YES;
webview.delegate =self;
//找到jsIOS.html文件的路径
NSString *basePath = [[NSBundle mainBundle]bundlePath];
NSString *helpHtmlPath = [basePath stringByAppendingPathComponent:@"jsIOS.html"];
NSURL *url = [NSURL fileURLWithPath:helpHtmlPath];
//加载本地html文件
[webview loadRequest:[NSURLRequest requestWithURL:url]];
/*
* 点击事件
* 调用javaScript的方法postStr()并取得返回值
* 输出返回值到控制台
*/
-(IBAction)IOS_JS:(id)sender
NSString *str = [self.webview stringByEvaluatingJavaScriptFromString:@"postStr();"];
NSLog(@"JS返回值:%@",str);
- (void)didReceiveMemoryWarning
[super didReceiveMemoryWarning];
@end 参考技术A 1、准备一个本地化的html网页,如jsIOS.html
<script type="text/javaScript">
function postStr()
return document.getElementById("text1").value;
//return "javaScript返回值啦";
</script>
2、将此html文件放到项目代码目录里面,
3、拖一个UIWebView控件和UIButton控件到xxxViewController对应的.xib或.storyboard视图的UIView上;
在xxxViewController的.h文件中分别声明UIWebView类型变量和UIButton类型的变量,以及一个按钮点击事件(并且跟视图里面的控件连线),
并且添加一个UIWebViewDelegate类型的委托。<喎�"http://www.2cto.com/kf/ware/vc/" target="_blank" class="keylink">vcD4KPHA+eHh4Vmlld0NvbnRyb2xsZXIuaM7EvP7E2sjdyOfPwqO6PC9wPgo8cD48L3A+CjxwIGNsYXNzPQ=="p1">
#import
@interface ViewController : UIViewController
@property(nonatomic,retain) IBOutlet UIWebView *webview;
@property(nonatomic,retain) IBOutlet UIButton *button;
-(IBAction)IOS_JS:(id)sender;
@end
4、在xxxViewController.m文件中实现通过点击事件,调用javaScript的方法并取得返回值。
代码如下:
#import "ViewController.h"
@interface ViewController ()
@end
@implementation ViewController
@synthesize webview;
- (void)viewDidLoad
[super viewDidLoad];
//设置webView
webview.backgroundColor = [UIColor clearColor];
//webview.scalesPageToFit =YES;
webview.delegate =self;
//找到jsIOS.html文件的路径
NSString *basePath = [[NSBundle mainBundle]bundlePath];
NSString *helpHtmlPath = [basePath stringByAppendingPathComponent:@"jsIOS.html"];
NSURL *url = [NSURL fileURLWithPath:helpHtmlPath];
//加载本地html文件
[webview loadRequest:[NSURLRequest requestWithURL:url]];
/*
* 点击事件
* 调用javaScript的方法postStr()并取得返回值
* 输出返回值到控制台
*/
-(IBAction)IOS_JS:(id)sender
NSString *str = [self.webview stringByEvaluatingJavaScriptFromString:@"postStr();"];
NSLog(@"JS返回值:%@",str);
- (void)didReceiveMemoryWarning
[super didReceiveMemoryWarning];
@end
Xcode里怎么使用c 调用oc的方法?
我想在c文件里去调用一个oc的方法,但是不知道如何下手啊,所以想请教各位大神帮忙解答一下。尽量详细点哦,附带代码参考一下就再好不过了,在这里先谢谢各位大神了
1.你的文件不能只是C类型的。下面我选择的类型是Foundation类型。
#import <Foundation/Foundation.h>
int main(int argc, const char * argv[])
@autoreleasepool
// insert code here...
NSLog(@"Hello, World!");
int a[5]=1,2,3,4,5;
NSArray * array = @[@"1",@"2",@"3",@"4"];
NSLog(@"%@", array[1]);
return 0;
导入了#import <Foundation/Foundation.h>就可以使用OC的方法,OC兼容C语言,像
int a[5]=1,2,3,4,5;
NSArray * array = @[@"1",@"2",@"3",@"4"];
NSLog(@"%@,%d", array[1],a[1]);
这样的写法,完全没有问题。
2.OC的方法不是类方法(+号开头)就是实例方法(-减号开头),这两种方法都需要有东西来调用。类方法通过类名调用,实例方法通过实例调用。而你的C文件,里面两者都不存在。所以,需要新建一个类,将方法写入到这个类中。然后,在C文件中,导入这个类,然后,就可以调用这个类相关的方法。
#import <Foundation/Foundation.h>
#import "OCQWE.h"
int main(int argc, const char * argv[])
@autoreleasepool
// insert code here...
NSLog(@"Hello, World!");
int a[5]=1,2,3,4,5;
NSArray * array = @[@"1",@"2",@"3",@"4"];
NSLog(@"%@,%d", array[1],a[1]);
OCQWE *qcqwe =[[OCQWE alloc]init];
int c = [qcqwe funWithNumber1:1 andNmuber2:4];
NSLog(@"c=%d",c);
int d =fun(3,5);
printf("d=%d\\n",d);
return 0;
int fun(int a,int b)
return a+b;
输出结果为
2014-07-29 09:08:31.456 Test[715:303] Hello, World!
2014-07-29 09:08:31.457 Test[715:303] 2,2
2014-07-29 09:08:31.458 Test[715:303] c=5
d=8
#import <Foundation/Foundation.h>
@interface OCQWE : NSObject
-(int)funWithNumber1:(int)number1 andNmuber2:(int)number2;
@end
#import "OCQWE.h"
@implementation OCQWE
-(int)funWithNumber1:(int)number1 andNmuber2:(int)number2
return number1+number2;
@end
oc中方法的调用有两种:
第一种:
类名或对象名 方法名;
[ClassOrInstance method];
[ClassOrInstance method:arg1];
[ClassOrInstance method1:arg2 method2:arg2];
第二种:
对象名.方法名; (点语法)
[[ClassOrInstance method:arg1] otherMethod]; //嵌套发送消息 参考技术B 你这个应该是用C++去调用吧。
创建一个静态类 如
CppAdapter.h
CppAdapter.mm
h里面声明静态方法,
mm文件里实现。实现的时候即可用OC。
以上是关于如何在IOS平台上使用js直接调用OC方法的主要内容,如果未能解决你的问题,请参考以下文章
iOS JS 交互之利用系统JSContext实现 JS调用oc方法