1. //首先到cocos2d-x项目下的ios目录下。找到AppController.mm文件,在函数 didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 中加入例如以下函数:  [__glView setMultipleTouchEnabled:YES];
  2. bool HelloWorld::init()
  3. {
  4. if ( !CCLayer::init() )
  5. {
  6. return false;
  7. }
  8. //开启多触点监听务必调用此函数
  9. setTouchEnabled(true);
  10. CCSprite* sp1 = CCSprite::create("Icon.png");
  11. sp1->setPosition(ccp(150, 200));
  12. addChild(sp1, 0, 23);
  13. CCSprite* sp2 = CCSprite::create("Icon.png");
  14. sp2->setColor(ccc3(0, 255, 0));
  15. sp2->setPosition(ccp(150, 100));
  16. addChild(sp2, 0, 24);
  17. return true;
  18. }
  19. //第一次碰触
  20. void HelloWorld::ccTouchesBegan(cocos2d::CCSet *touches, cocos2d::CCEvent *event)
  21. {
  22. CCSetIterator inter = touches->begin();
  23. for(; inter != touches->end(); inter++)
  24. {
  25. CCTouch* touch = (CCTouch*)(*inter);
  26. CCPoint point = touch->getLocation();
  27. if(touch->getID() == 0) //第一个触点
  28. {
  29. CCSprite* sp1 = (CCSprite*)getChildByTag(23);
  30. sp1->setPosition(point);
  31. }else if(touch->getID() == 1)//第二个触点
  32. {
  33. CCSprite* sp2 = (CCSprite*)getChildByTag(24);
  34. sp2->setPosition(point);
  35. }
  36. }
  37. }
  38. //移动或拖拽
  39. void HelloWorld::ccTouchesMoved(cocos2d::CCSet *touches, cocos2d::CCEvent *event)
  40. {
  41. CCSetIterator inter = touches->begin();
  42. for(; inter != touches->end(); inter++)
  43. {
  44. CCTouch* touch = (CCTouch*) (*inter);
  45. CCPoint point = touch->getLocation();
  46. if(touch->getID() == 0)
  47. {
  48. CCSprite* sp1 = (CCSprite*)getChildByTag(23);
  49. sp1->setPosition(point);
  50. }else if(touch->getID() == 1)
  51. {
  52. CCSprite* sp2 = (CCSprite*)getChildByTag(24);
  53. sp2->setPosition(point);
  54. }
  55. }
  56. }
  57. //用户手指抬起
  58. void HelloWorld::ccTouchesEnded(cocos2d::CCSet *touches, cocos2d::CCEvent *event)
  59. {
  60. }
  61. //多触点的托付监听注冊放在onEnter的生命函数中会造成程序异常退出。默认都写在以下函数中。

  62. void HelloWorld::registerWithTouchDispatche()
  63. {
  64. CCDirector::sharedDirector()->getTouchDispatcher()->addStandardDelegate(this, 0);
  65. }
  66. //删除多触点的托付监听
  67. void HelloWorld::onExit()
  68. {
  69. CCDirector::sharedDirector()->getTouchDispatcher()->removeDelegate(this);
  70. //这句务必要写
  71. CCLayer::onExit();
  72. }
05-28 09:11