ヘッダーファイルがあります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アプリケーションのファイルで印刷機能を呼び出したいと思います。誰でも私を助けることができますか?
前もって感謝します