想在XCode上調用C++的代碼,我這這裡小結一下我的方法,Hello類只是為Objective-C調用C++做的一個封裝。
但是我感覺這樣太不方便了,如果C++的代碼很多的時候,這樣做就很不好,期待有人給出好的解決方案,文章最後有這個Demo的源代碼。
參考文章:http://www.linuxidc.com/Linux/2013-03/82018.htm
寫講解一下這個Demo的內容
1,新建一個項目,我選的是“Single View Application”,名字順便
2,新建一個Objective-C class文件,取名為Hello
3,在項目中會出現兩個文件,Hello.h和Hello.m文件,將Hello.m文件的後綴名改為.mm,即Hello.mm
4,在Hello.h文件內添加C++類,Hello.h文件內容如下所示:
#import <Foundation/Foundation.h>
@interface Hello : NSObject{
class NewHello{
private:int greeting_text;
public:
NewHello(){
greeting_text=5;
}
void say_hello(){
printf("Greeting_Text = %d",greeting_text);
}
};
NewHello *hello;
}
-(void)sayHellooooo;
@end
5,在Hello.mm文件中實現sayHellooooo方法,在這個方法中調用C++類
#import "Hello.h"
@implementation Hello
-(void)sayHellooooo{
hello = new NewHello();
hello->say_hello();
}
@end