Hi,
I have a method in an objective-C class. It has 2 callback functions written in C.The class pointer i.e. "self" is passed to these functions as "void *". In the C functions I create a pointer of type class and assign the " void * " parameter.
The first callback function executes successfully. But the "void *" pointer becomes "nil" in the 2nd callback function. Note that I haven't tweaked pointer in the first callback but still I get "nil" in 2nd callback.
Any ideas what might be going wrong?