Skip to content

Instantly share code, notes, and snippets.

@yoshimax
Created May 14, 2012 13:54
Show Gist options
  • Select an option

  • Save yoshimax/2694116 to your computer and use it in GitHub Desktop.

Select an option

Save yoshimax/2694116 to your computer and use it in GitHub Desktop.
sharedDispatcher is deprecated
// 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