我有一个头文件test.h
#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 应用程序的文件中调用 print 函数。谁能帮我?
提前致谢