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 702855
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T03:46:00+00:00 2026-05-14T03:46:00+00:00

I have two sprites in my app. Both should have touches enabled and both

  • 0

I have two sprites in my app. Both should have touches enabled and both touches are independent of one another. And if I touch the screen (not on sprites) it should have different touches. My problem is all three sprite1, sprite2, remaining screen should have independent touches. But my program is taking all the touches as same. How can I make them as what I needed ?

Thank You.

  • 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-14T03:46:01+00:00Added an answer on May 14, 2026 at 3:46 am

    to do this, first you need to enable multi touch for your application:

        [self setMultipleTouchEnabled:YES];
    

    Then to identify touches, you can use something like the following code:

    - (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event 
    { 
       for ( UITouch* Touch in touches ) 
       { 
          printf( "Touch began %p, tapcount %d\n", (void *) Touch, [Touch tapCount] ); 
          fflush( stdout ); 
       } 
    } 
    
    - (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event 
    {  
       for ( UITouch* Touch in touches ) 
       { 
          printf( "Touch moved %p, tapcount %d\n", (void*)Touch, [Touch tapCount] ); 
          fflush( stdout ); 
       } 
    } 
    
    - (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event 
    { 
       for ( UITouch* Touch in touches ) 
       { 
          printf( "Touch ended %p, tapcount %d\n", (void*)Touch, [Touch tapCount] ); 
          fflush( stdout ); 
       } 
    }
    

    So with the (void*)Touch, you can identify a particular touch pointer, which will not change until you actually “end” that touch.

    For example, if you touch the screen, you will get a touch instance that will remain with the same memory address even if you move that finger, until you release it. Good luck with this, I used the bases of this code exactly for multi touch sprite management.

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

Sidebar

Related Questions

I'm trying to draw two sprites on the same screen. I have defined the
I have two static (STATIC_MASS) SpaceManager sprites. One is a child of the other
I have two sprites in my movieclip, one under the other, and i want
I have two ArrayList's that I am using, one for the enemy sprites and
I have two pair of sprites on the screen.when two sprites are clicked i
I have two images moving across the screen, one is a ball and one
This has really been a hassle, but I have two sprites, both of them
Have two actionsheet buttons and one modalviewcontroller on mainviewcontroller in application. Now for two
I have two DropDownListBoxes one is called ddlDay and the other is ddlMonth. As
I have two classes generated by LINQ2SQL both from the same table so they

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.