I´m trying to pass a reference of array of floats.
The problem is the call, because I´am developing for c but I want to make a call to an Objective C Function, Could anyone help me? How can I make the call?
There you have the code:
bool VideoCamera_Camera(float *buffer) {
[VideoCameraBinded VideoCamera_CameraUpdateBinded: buffer];
}
Thank you
I’m going to assume that VideoCameraBinded is an instance, and not a class. If I am mistaken, please let me know.
If you have a method defined on VideoCameraBinded’s class, something like this:
then I don’t know where your problem is coming from. Are you getting a specific error or some other issue?