Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Possible Duplicate:
How to make a periodic call to a method in objective c?

I am making an app where when the user touches the screen, the following method is called:

- (void)explode:(int)x

The user only has to touch the screen once, but I want the method to be called repeatedly every 0.1 seconds for 100 times, and then it should stop being called.

Is there a way of setting up a 'temporary' timer like this on a method where an integer is being passed?

share|improve this question
6  
Yes, there are several ways, which would be revealed to you if you made the slightest effort to look for them. – Hot Licks Sep 8 '12 at 19:12

marked as duplicate by Josh Caswell, omz, Mehul, Janak Nirmal, Pfitz Dec 21 '12 at 7:58

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

up vote 2 down vote accepted

You could pass a counter and the 'x' as into the timer's userInfo. Try this:

Create the timer in the method that's catching the touch event and pass a counter and the int 'x' into the userInfo:

NSMutableDictionary *userInfo = [[NSMutableDictionary alloc] initWithCapacity:2];
[userInfo setValue:[NSNumber numberWithInt:x] forKey:@"x"];
[userInfo setValue:[NSNumber numberWithInt:0] forKey:@"counter"];

[NSTimer timerWithTimeInterval:0.1
                        target:self
                      selector:@selector(timerMethod:)
                      userInfo:userInfo
                       repeats:YES];

Create the timer method, check the userInfo's number count, and invalidate the timer after 100 times:

- (void)timerMethod:(NSTimer *)timer
{
    NSMutableDictionary *userInfo = timer.UserInfo;
    int x = [[userInfo valueForKey:@"x"] intValue];

    // your code here

    int counter = [[userInfo valueForKey:@"counter"] intValue];
    counter++;

    if (counter >= 100)
    {
        [timer invalidate];
    }
    else
    {
        [userInfo setValue:[NSNumber numberWithInt:x] forKey:@"x"];
        [userInfo setValue:[NSNumber numberWithInt:counter] forKey:@"counter"];
    }

}

Please also see the Apple docs on NSTimer:

https://developer.apple.com/library/mac/#documentation/Cocoa/Reference/Foundation/Classes/nstimer_Class/Reference/NSTimer.html

share|improve this answer
what about passing the integer "x" to the method as i said in the question? – Conor Taylor Sep 8 '12 at 20:08
Yeah, you could pass it in via the timer's userInfo, if you'd like. Please see my edited answer above. – JRG-Developer Sep 8 '12 at 20:18
you're great. Thanks – Conor Taylor Sep 8 '12 at 20:41
Yeah, so the userInfo is actually supposed to be a dictionary... see the revised answer above for better practice... – JRG-Developer Sep 27 '12 at 11:45

Not the answer you're looking for? Browse other questions tagged or ask your own question.