I am trying to port a library of native iOS in Xamarin iOS by creating the binding library. I followed this tutorial. But I am stuck at the point of building the solution.
I had replaced void*
with IntPtr
because objective-c equivalent of void*
is IntPtr
in C#.
Any help will be appreciated. Thanks in advance.
Edit:
int32_t*
and int64_t*
of objective-c in C# to be more precise.