I have an Objective-C class. What I am doing is I am calling C functions in my objective-C class [ This C functions I implemented in one file , which is part in this sample ios
First of all Thanks to Ricardo Kloth , Now it's working for me.
Here is my code ...
Objective-C Code:
static id staticObject = nil; @Implementation MyObjCclass init { .... staticObject = self; } // C fun void functionPointer() { [staticObject message]; // it's working } -(void) message { } @end