3
votes
4answers
112 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
172 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, …
2
votes
2answers
352 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 …
1
vote
5answers
134 views
iphone multiple NSTimer troubles
Hi, I'm still new to programming so excuse me if this is silly. I'm programming a simple game and require multiple timers to send different messages at different intervals, so when creating the game, …
1
vote
2answers
74 views
NSTimer Troubles
I am trying to run the code below but it keeps locking up my simulator after the "Tick" is written to the console. It never outputs "Tock" so my guess is that it has to do with the line …
1
vote
3answers
382 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:) …
1
vote
1answer
116 views
How to efficiently assign NSStatusItem images and alternte images?
Let's say I have a code like this...
- (id) init {
...
self.myImage1 = [NSImage imageNamed:@"some_image_name"]; // setter retains
...
}
- (void) setStatusItemImage
{
[self.statusItem …
1
vote
1answer
200 views
Static counter to be repeatedly incremented by NSTimer
Every 1/16 of a second, I have an NSTimer that fires, calling a method each time. I want to create a static integer that is increased by '1' each time the method is called, once the static integer is …
1
vote
3answers
437 views
What is the best way to make a bouncing ball animation with infinite loop on iPhone?
Hi,
I am developing an iPhone game in which birds bounce like in this game: http://www.students.uni-mainz.de/rathb000/Fillit/Game.html
I have set up the images for animating the wings of the flying …
1
vote
1answer
245 views
Is this a job for NSTimer? Looping interface changes
A button on my inferface, when held down, will perform a series of changes on other parts of my interface.
For instance, for one second some text will turn blue, then a UImageView will change its …
1
vote
2answers
631 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 …
1
vote
2answers
200 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 - …
1
vote
3answers
343 views
NSTimer and Touches event conflict
hi
im trying to execute 2 actions on occurrence of their particular events
one is the animation occurring when the a timer with fixed interval is fired
and other is also a animation occurring when a …
0
votes
1answer
21 views
Sync sound with NStimer iphone sdk?
I am creating an application,in my app i am changing images for countdown.I want to play a Tick sound when one second completes(i mean when image changes).I have a 25 second long sound with repeated …
0
votes
1answer
44 views
iPhone:Can i run two timer at a time?
Hello All,
My game program is running two timers at a time. For showing timer logic and game logic. As far as now, no problems. Both seems to be working fine. Can it be there or will it create any …
