Xcode里怎么使用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
2015-08-09 · 知道合伙人教育行家
oc中方法的调用有两种:
第一种:
类名或对象名 方法名;
[ClassOrInstance method];
[ClassOrInstance method:arg1];
[ClassOrInstance method1:arg2 method2:arg2];
第二种:
对象名.方法名; (点语法)
[[ClassOrInstance method:arg1] otherMethod]; //嵌套发送消息
创建一个静态类 如
CppAdapter.h
CppAdapter.mm
h里面声明静态方法,
mm文件里实现。实现的时候即可用OC。