我有一個頭文件test.h
如何在.m文件中調用C++文件的函數?
#ifndef __visibilty_test__test__
#define __visibilty_test__test__
#include <iostream>
using namespace std;
class test{
public:
void print(string s);
};
#endif
和test.mm
#include "test.h"
using namespace std;
void test:: print(string s){
cout << s << endl;
}
現在我想調用打印功能在我AppDelegate.m
文件中的iOS應用程序。誰能幫我?
在此先感謝
'test.mm'呼叫應被稱爲'test.cpp',因爲它是純粹的C++。 – trojanfoe
[iPhone/iPad項目中的#import C++頭文件時出現問題]的可能重複(http://stackoverflow.com/questions/3890552/problem-when-import-c-header-file-in-iphone-ipad-project ) –