Linked Questions
32 questions linked to/from Calling Objective-C method from C++ member function?
0 votes
0 answers
142 views
Performance of compiling c++ code in a .mm file
I am writing an iOS app in which I need to notify something from a c++ file to a .mm file. Someone in this site told me that I should change the extension of my cpp file and treat it as a .mm file ...
1 vote
1 answer
90 views
Using an Objective-C SDK in a C++ class
I have a c++ project that needs to make use of an objective-C SDK. My idea is to create a c++ class in a .mm file which contains calls to the SDK in objective-C syntax. Then I would declare an ...