in Technology by

Can I write some C++ function in same .m file? Will it compile? If no, what changes should I do to compile it?

Please log in or register to answer this question.

1 Answer

0 votes
by

The easiest solution is to simply tell Xcode to compile everything as Objective C++.

Set your project or target settings for Compile Sources As to Objective C++ and recompile.

Then you can use C++ or Objective C everywhere.

Related questions

...