NSString の代わりに Objective-C コードで C++ 文字列オブジェクトを使用したいので、それを変換する必要はありません (std::string がより頻繁に必要です)。次のようにしてみました:
using namespace std;
@interface InstrumentGridViewController : UIViewController {
string* trackName; // also tried using std::string, didn't work
@property (nonatomic, assign) string* trackName;
}
string* trackName;
ただし、ステートメントと@property
行の両方でエラーが発生しますExpected specifier-qualifier-list 'string'
。
編集:追加するのを忘れまし#include <string>
たが、これを追加するとエラーが発生しますString: no such file or directory