I'm not understanding something about how to use transitions. I've looked through the transitions demo and my code looks correct from what I can tell. Seems like I am missing something simple?
my code:
RotoZoomTransition *t = [RotoZoomTransition node];
[[Director sharedDirector] replaceScene:[t transitionWithDuration:1.2f scene:pl]];
I get a warning "RotoZoomTransition: may not respond to '-transitionWithDuration:' and the app crashes when hitting that line. I have looked at trasitions.h and RotoZoomTransition is of type TransitionScene which clearly has a transitionWithDuration:scene:
ideas?