Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

44
votes
4answers
64k views

How do I use NSTimer

How do I use an NSTimer. Can anyone give me step by step instructions?
15
votes
3answers
2k views

UIScrollView pauses NSTimer until scrolling finishes

While a UIScrollView (or a derived class thereof) is scrolling, it seems like all the NSTimers that are running get paused until the scroll is finished. Is there a way to get around this? Threads? A ...
11
votes
2answers
12k views

Getting Current Time in string in Custom format in objective c

I want current time in following format in a string. dd-mm-yyyy HH:MM How? Thanks in advance. Sagar
10
votes
6answers
915 views

Best time to invalidate NSTimer inside UIViewController to avoid retain cycle

Does any one know when is the best time to stop an NSTimer that is held reference inside of a UIViewController to avoid retain cycle between the timer and the controller? Here is the question in more ...
8
votes
1answer
6k views

How Do I write a Timer in Objective-C?

I am trying to make a stop watch with NSTimer. I gave the following code: nst_Timer = [NSTimer scheduledTimerWithTimeInterval:0.001 target:self selector:@selector(showTime) userInfo:nil ...
7
votes
3answers
117 views

Observer pattern for stopwatch

I'm trying to imlement a stopwatch based on the MVC model. The stopwatch uses an NSTimer with the selector -(void) tick being called every timeout. I've tried to make the stopwatch as a model for ...
6
votes
3answers
363 views

60 hz NSTimer and autoreleased memory

I have an NSTimer firing at 60 fps. It updates a C++ model and then draws via Quartz 2D. This works well except memory accumulates quickly even though I am not allocating anything. Instruments ...
5
votes
1answer
1k views

NSTimers running in background?

I was under the impression that NSTimer did not work at all after an application calls applicationWillResignActive. I seems however that existing NSTimers (i.e. ones created before the application ...
5
votes
2answers
3k views

NSTimer not firing when runloop is blocked

I am just about finished with my app and beta testing found a bug in the stopwatch portion... The stopwatch uses an nstimer to do the counting and has a table for storing laps, but when the lap table ...
5
votes
2answers
2k views

NSTimer callbacks while iPhone application is inactive

This question seems to be the essence of several others on this forum. I believe that it is possible for the active iPhone application to continue running, and specifically, to continue receiving ...
4
votes
2answers
456 views

scheduledTimerWithTimeInterval vs performselector with delay with iOS 5.0

i am doing function call with scheduledTimerWithTimeInterval. i am just checking that xml parsing is completed or not for particular web services and invalidating timer in didEndElement method after ...
4
votes
2answers
171 views

NSDate memory leak issues

I have a memory leak at NSDate. Please review the code below. -(void)myMethods:(NSDate *)currentTime{ [NSThread detachNewThreadSelector:@selector(mySecondMethods) toTarget:self withObject:nil]; } ...
4
votes
2answers
872 views

Repeating NSTimer, weak reference, owning reference or iVar?

I thought I would put this out here as a separate question from my previous retaining-repeating-nstimer-for-later-access as the discussion has moved forward making a new question clearer than yet ...
4
votes
2answers
2k views

Change UIButton Background Image more than once per second

I am currently working with the iPhone SDK. I have a NSTimer that changes the background image of a UIButton. Once this is complete, it will trigger the same action again (reset the NSTimer) for a ...
3
votes
1answer
361 views

iOS5 ARC is it safe to schedule NSTimers from background selectors?

I'm trying to debug my application. I've been using some NSTimer instances in my non-arc code like this (from the main thread): [NSTimer scheduledTimerWithTimeInterval:5 target:musicPlayer ...
3
votes
4answers
81 views

How to define a centralized timer for app in iphone?

I need to perform certain tasks (many tasks) at different intervals. How can i implement it with single NStimer instance as individual timers will create overhead?
3
votes
3answers
217 views

iPhone: NSTimer

Have a question... I have Timer [NSTimer scheduledTimerWithTimeInterval:120 target:self ...
3
votes
3answers
330 views

NSTimer, to retain or not to retain

This is something that has puzzled me for awhile. I have a NSTimer, added to the currentRunLoop, and if I don't retain it, it crashes. NSTimer *timer = [[NSTimer timerWithTimeInterval:60.0 ...
3
votes
3answers
143 views

xcode calling an int redefining value of an int when called in another function

I'm having trouble with incrementing an int from one function by calling it in another function. At the moment the bit I'm working on looks like this: in the .h file I declare the int and timer as ...
3
votes
1answer
265 views

NSTimer never starts

Sorry if this has been answered before. I'm just trying to close an NSPanel after a couple second delay, but I can't get my NSTimer to start. It will fire if I explicitly call the fire method on it, ...
3
votes
1answer
789 views

Analog Clock with UIImages for Hands?

I want to know how to make an analog clock in iPhone SDK. However, I want the hands of the clock to be custom images and not squares drawn over like in this tutorial: ...
3
votes
6answers
309 views

NSTimer as a self-targeting ivar

I have come across an awkward situation where I would like to have a class with an NSTimer instance variable that repeatedly calls a method of the class as long as the class is alive. For illustration ...
3
votes
1answer
2k views

Passing parameters to the method called by a NSTimer

How can I pass a parameter to the method called by a NSTimer? My timer looks like this: [NSTimer scheduledTimerWithTimeInterval:4 target:self selector:@selector(updateBusLocation) userInfo:nil ...
3
votes
3answers
1k views

NSTimer crashes, when I call [Timer isValid] or [Timer invalidate]

I have two NSTimers in my iPhone app. DecreaseTimer works fine, but TimerCountSeconds crashes when I call [timerCountSeconds isValid] or [timerCountSeconds invalidate]. They are used like this: ...
3
votes
2answers
240 views

How should I manage my NSTimer in a tabbar iPhone app?

I have a tabbar-based app with three tabs, one of them is a running clock. To animate the clock UI, I use an NSTimer that fires once a second. If the user will be switching in and out of the various ...
3
votes
3answers
766 views

Best method to get text to blink in iPhone OS?

I want my text box to blink (like the old LCD clocks) and right now I'm calling a myriad of NSTimers and selectors that wait, change the alpha, wait, then change it back. Even with this it looks ...
3
votes
1answer
3k views

Running NSTimer on a thread

I am trying to run a NSTimer on a thread using iPhone SDK 3.0. I think I am doing everything correctly (new runloop etc.). If I call [timer invalidate] on viewDidDissappear though I get this error: ...
3
votes
4answers
583 views

How to display time in seconds in Cocoa efficiently?

I want to display the time (including seconds) in an application in a text field, pretty simple. What I currently do is create a NSTimer that runs every 0.1 seconds that gets the system time and ...
3
votes
3answers
2k views

Restart NSTimer firing interval

I'm programming an iPhone app and this is my question. I have a NSTimer with an interval of 3 seconds that fires to decrease a value. In the other hand, when I do an action that increase that value I ...
3
votes
1answer
2k views

Is my UIView visible to the user?

is it possible to determine whether my UIView is visible to the user or not? My View is added as subview several times into a Tab Bar Controller. Each instance of this view has a NSTimer that ...
3
votes
3answers
4k views

iPhone dev — performSelector:withObject:afterDelay or NSTimer?

To repeat a method call (or message send, I guess the appropriate term is) every x seconds, is it better to use an NSTimer (NSTimer's scheduledTimerWithTimeInterval:target:selector:userInfo:repeats:) ...
3
votes
3answers
648 views

How many NSTimers is too many?

In an iPhone OS device, how many simultaneously running NSTimers would be too many? I have a bunch of routines being called by a single timer firing 25 times a sec, and things are pretty choppy, slow, ...
3
votes
2answers
768 views

Is there any reason to retain a scheduled NSTimer if you don't need to invalidate it?

I'm going back over some crufty code to tidy it up and I see I've been retaining NSTimers returned from scheduledTimerWithTimeInterval:target:selector:userInfo:repeats: and storing them in a field - ...
2
votes
3answers
64 views

iphone - NSTimers in background

Im developing an app that has to run in the background. It's a location based app, so it runs all the time, the OS doesnt kill it. It should send some info every 10 secs(just for debugging), I set a ...
2
votes
2answers
136 views

Objective C & iOS: running a timer? NSTimer/Threads/NSDate/etc

I am working on my first iOS app, and have run in the first snag I have not been able to find a good answer for. The problem: I have a custom UIGestureRecognizer and have it all wired up correctly, ...
2
votes
1answer
48 views

NSTimer or pausing operation?

Fistly i'm fairly new to programming in general. And very new to Objective C and IOS programming. This is just a practice programming I'm writing to learn with. What its basically does is this : ...
2
votes
1answer
76 views

NSTimer is it thread safe?

I have a repeated timer with interval of 1/4 second. I am initializing it like this: [NSTimer scheduledTimerWithTimeInterval:0.25 target:self ...
2
votes
4answers
104 views

NSTimer doesnt pass arguments to the selector

So I have the following NSTimer : [NSTimer scheduledTimerWithTimeInterval:2.0 target:self ...
2
votes
1answer
29 views

Pausing a process for a pre-set (hardcoded) period of time

I am fooling around with NSTimer in a program I am writing and am having some troubles envisioning how I can do a specific task. What I want to have happen is that I want the process I am running (a ...
2
votes
2answers
136 views

NSTimer Reliable Alternatives

I have an application that is supposed to log certain things every 1 second and I'm currently using NSTimer, but if my application transitions screens (or almost anything else, really) it slows down ...
2
votes
3answers
88 views

What is the most efficient way of implementing a game timer

I am writing an iPhone game. When the user makes his first move a timer kicks of with an interval of 0.01 seconds. A UILabel displaying the time also gets updated every time. I noticed when testing on ...
2
votes
3answers
188 views

Stopwatch using NSTimer incorrectly includes paused time in display

This is my code for an iPhone stopwatch. It works as expected and stops and resumes when the buttons are clicked. When I hit "Stop", however, the timer won't stop running in the background, and ...
2
votes
1answer
272 views

iOS Killing my background task after 600 secs

I'm developing an app that needs background task updating location every 30 mins. I've tried to use a NStimer and updating every minute and it works (it spent 2 hours working). However, when I set it ...
2
votes
2answers
401 views

PerformSelector After delay doesn't run in background mode - iPhone

I have a voip application which runs constantly on the background as well. While I'm in the background I'm calling from the main thread: (to establish network connection in case I diagnose a network ...
2
votes
4answers
123 views

NSTimer inaccurate?

I'm using an NSTimer to update a label that shows the current time each minute. I fire the timer at a full minute date (e.g. 2:23:00 instead of 2:22:17). The problem is that NSTimer seems to work ...
2
votes
1answer
105 views

how do I understand what's causing app to crash from crash log?

This is my crash log: Exception Type: EXC_BAD_ACCESS (SIGSEGV) Exception Codes: KERN_INVALID_ADDRESS at 0xd1e5501b Crashed Thread: 0 Thread 0 name: Dispatch queue: com.apple.main-thread Thread 0 ...
2
votes
1answer
34 views

BAD_ACCESS while calling a timer's handle

I have this realization of timer in Timer.h/.mm @implementation Timer static multiset<Timer *> timers; - (void) run { action(); if (!repeat) { ...
2
votes
1answer
92 views

NSTimer target and userInfo parameter questions

I've read around SO as well as looked at the Apple documentation for the NSTimer class, and it seems like the easiest way to create a timer is by using the following method: [NSTimer ...
2
votes
3answers
79 views

What is difference between initilizing an NSString simply and with retain?

I want to know that difference between following two lines name1 = [[NSString stringWithUTF8String:(char *)sqlite3_column_text(compiledStatement,1)] retain]; name1 = [NSString ...
2
votes
0answers
131 views

How to make a persistent (multitasking-aware) stopwatch?

I am using NSTimer to make a stopwatch. I would like it to continue working if the user switches to a different app, but right now it only works when the app is running. I figure that this is probably ...

1 2 3 4 5 13