Schedule Selector Error

Hi all,

I’m trying to port my iPhone app to windows 8, I have a problem with this line :

[self schedule:selector(fire:)];@

The equivalent on c++ should be :

this->schedule(schedule_selector(AirScene::fire));

Where AirScene is the name of my class, but I have this error returning by Visual Studio 2012 :

error C2064: term does not evaluate to a function taking 1 arguments

So, in other words the function schedule(selector) is not found. It’s strange because I have no problem with unschedule method, do you have any idea please ?