Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3353306
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T02:08:07+00:00 2026-05-18T02:08:07+00:00

I’m writing an iPhone app, and I want to handle multitouches. I’m using cocos2d

  • 0

I’m writing an iPhone app, and I want to handle multitouches. I’m using cocos2d libs. So I’ve made a CCLayer subclass and set it to be a CCStandartTouchDelegate. For some reason I don’t want to use UIGestureRecognizer and to build a correct logic I should know the answers for these questions:

  1. If I tap the screen with one finger, and then with the other one. How many touches will be caught in ccTouchesBegan?

  2. If I tap the screen with two fingers and then will move only one of them. How many touches will be caught in ccTouchesMoved?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-18T02:08:07+00:00Added an answer on May 18, 2026 at 2:08 am

    The best thing to do when you have a question like this is just to implement the callbacks, and in the implementation, log the parameters. For example:

    - (BOOL)ccTouchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
    {
        // Log everything (there will be repetition because the event contains the set of touches):
        NSLog(@"ccTouchesBegan: touches = %@; event = %@", touches, event);
    
        // Or, just log the number of touches to simplify the output:
        NSLog(@"ccTouchesBegan: %d touches", [touches count]);
    
        return kEventHandled;
    }
    

    Then just run your app and experiment, watching the log. You’ll learn more this way (and faster) than you will by asking here.

    But to answer your specific questions:

    1. You should get one call to ccTouchesBegan for each tap (even if the first finger is still down when the second tap occurs). If the two fingers hit simultaneously, you’ll get one call with two touches.

    2. You’ll get repeated calls to ccTouchesMoved each time one or more of the fingers moves. If only one finger is moving, each call will be passed a single touch. Stationary fingers will not generate events until they are moved or lifted.

    Of course, remember to set isTouchEnabled = YES for your CCLayer or you won’t get any callbacks at all.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am using Paperclip to handle profile photo uploads in my app. They upload
We're building an app, our first using Rails 3, and we're having to build
I am writing an app with both english and french support. The app requests
link Im having trouble converting the html entites into html characters, (&# 8217;) i
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I want to count how many characters a certain string has in PHP, but
I have a string like this: La Torre Eiffel paragonata all’Everest What PHP function
I am reading a book about Javascript and jQuery and using one of the
I have a French site that I want to parse, but am running into
I want use html5's new tag to play a wav file (currently only supported

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.