我想从 c 回调一个目标 c 方法。
//c
int gameEngineCallback(int buttontype,void (*callback)(void))
//using above function
gameEngineCallback(roundButton,callback);
//this works fine but I want to call objective c native method instead of this
static void callback(void){
}