Try the search, it's linked to some great forums

Wednesday, June 29, 2011

warning: 'PostCardsViewController' may not respond to .......

This warning is displayed at compile time;
/Users/chris/...../PostCardsViewController.m:461: warning: 'PostCardsViewController' may not respond to '-transitionFromView:toView:.......'

This warning is often displayed if the method you are calling has it's definition below the area it's called.  You can either move the method above or more properly declare that method at the top of the .m file as a @private property.