Created
May 14, 2012 13:54
-
-
Save yoshimax/2694116 to your computer and use it in GitHub Desktop.
sharedDispatcher is deprecated
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // http://www.cocos2d-iphone.org/wiki/doku.php/prog_guide:migrate_to_v2.0#ccdirector | |
| // CCTouchDispatcher | |
| // v1.0 | |
| [[CCTouchDispatcher sharedDispatcher] addTargetedDelegate:self | |
| priority:0 | |
| swallowsTouches:YES]; | |
| // v2.0 | |
| CCDirectorIOS* director_ = (CCDirectorIOS*) [CCDirector sharedDirector]; | |
| [[director_ touchDispatcher] addTargetedDelegate:self | |
| priority:0 | |
| swallowsTouches:YES]; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment