I want to create an C++ so library and include it in my Objective C code. I work in XCode. Here is C++ code:
--------------core.cpp----------
#include <vector>
#include <algorithm>
extern "C" void my_sort(std::vector<int>& a) throw()
{
sort(a.begin(), a.end()); // this is std::vector's sort function
}
So I want to create the so library for including it in the Obejctive C code. How to include or import it ? .. I want to call my_sort() function ?
THanks !