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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T18:47:17+00:00 2026-05-11T18:47:17+00:00

You know how Mario just keeps running to the right when you press and

  • 0

You know how Mario just keeps running to the right when you press and hold the right-button on the D-Pad? In the same manner, I want my UIButton to continuously fire its action for the duration that it is held down. Is this possible for a UIButton? If not, is this possible to do with a UIImageView by overriding a touch handling method in a certain way? Actually, before trying to do get this done with UIButton I had some UIImageViews (Arranged to function as a D-Pad) that were checked by touch handling methods but things started to get messy so I thought this could be done easier with UIButton and thus switched over. Anybody who knows how to get recognition of a continuous, stationary (not-moved) down-touch, please share.

  • 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-11T18:47:17+00:00Added an answer on May 11, 2026 at 6:47 pm

    Don’t use a button, use multi-touch and NSTimer:

    Make a view-local NSTimer object inside your interface, then use it to start/cancel the timer

    -(void)movePlayer:(id)sender {
       <Code to move player>
    }
    
    -(void)touchesBegan:(NSSet*)touches  withEvent:(UIEvent*)event {
        timer = [NSTimer scheduledTimerWithTimeInterval:0.3 target:self selector:@selector(movePlayer:) userInfo:nil repeats:YES];
    }
    
    -(void)touchesEnded:(NSSet*)touches  withEvent:(UIEvent*)event {
       if (timer != nil) 
          [timer invalidate];
          timer = nil;
    }
    
    -(void)touchesMoved:(NSSet*)touches  withEvent:(UIEvent*)event {
        if (timer != nil) {
           [timer invalidate];
           timer = nil;
        }
    }
    

    This way, you can repeat the event at a predefined interval, and not have to rely on a button, and get the repeat behaviour you’re looking for.
    Note the touchesMoved trigger – if they move their finger, this cancels the timer, and the player stops moving.

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

Sidebar

Related Questions

I know this question may be weird. But I just want to know whether
I know that Phonegap has an event for back button, but it's only available
Anyone know how I can make a login button in Ruby on Rails for
I want it to be as simple as this, but I know it isn't:
I want to know if it's possible to do something like this: `readfile(base64_decode_only_img_src_tags(mypage.html)); I've
I would like to know this to understand why some games like Mario is
I just imported the ZXing library in my app, I know how to set
Know this might be rather basic, but I been trying to figure out how
Know if it's possible to access the iPhone compass in Safari using JavaScript? I
I know you can not set a key value dynamically, but what about the

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.