I am trying to access some instance variables from a C function in the same source file. Declaring the instance variables as public does not make them visible, so the only alternative is to declare them outside the @interface, thus making them global. I am sure this is not the proper approach.
Also, how can I call a method from within the C function if the object itself is not visible?
Thanks.
Also, how can I call a method from within the C function if the object itself is not visible?
Thanks.