Tagged Questions
0
votes
3answers
57 views
UILabel text is not updating NSTimer objective c?
Hi I have Navigation based application in which there is a timer in one view. (View like : A, B & C)
I have timer in C when I start timer it's working fine but when I push back to any view and ...
0
votes
2answers
46 views
iPhone iOS how to initialize GCD dispatch timer with a specific fire time?
I'm looking to start the timer in the code below at a specific time and cannot find a way of instantiating dispatch_time_t with the time I want. I'm particularly not sure how to get ...
0
votes
2answers
164 views
iPhone timer task for long processes
When the application enters into background state, the time used to run in background is not working. Following is the code.
In AppDelegate.h,
@interface AppDelegate : UIResponder ...
-4
votes
1answer
42 views
Timer since a user is logged on in Xcode [duplicate]
The problem is as follows: I have the time (in hh:mm:ss) when a user logs into the app. Now I have to implement a clock from that "log-in" time to the current time. This should be updated every second ...
0
votes
0answers
33 views
Changing labels after swithiching between views
I have two-views app for iPhone. On first one I call code that does this every second with NSTimer:
update variables
make sound
update label
update image position
When I start app - everything ...
0
votes
1answer
45 views
What algorithm to manage several timers that must not interfere with each other in obj-c (Slideshow)?
I' making an app that slideshows several views, photos and stuff like that. If the user doesn't do anything, then it change the view each few seconds. If the user swipe, then the slideshow must stop, ...
2
votes
3answers
270 views
ObjC/C/C++ high resolution timer with callback
I was sure this question has been asked before so I did of course use the search function to check if there's an answer solving my issue.
However, all I could find were a lot of answers on measuring ...
2
votes
1answer
272 views
Can't run a timer in GCD block with a dispatch_source_t in iOS application
I want to create a timer in GCD block ( which will fire once every 2 seconds and call a method ) to use it as a background task. But as i see timer fires never. Here is my code:
- ...
0
votes
1answer
109 views
Objective-c timer wont invalidate
Here is my situation: I am making a countdown app which works fine but does not appear to stop when I call [stopWatchTimer invalidate];, and I have no idea why. Here is my code:
- ...
-3
votes
1answer
72 views
How to Create an IOS App that Counts down to a specific date - Objective C [closed]
I want to create an IOS App that counts down to a specific date in the simplest code please. For Example the 'Days till Christmas App'. How would I go about this? I am new to coding.
Thanks in ...
1
vote
1answer
162 views
how to finish my countdown timer in objective c?
I have a countdown timer where the user can input the time they want to start from using a countdown timer like in the clock app. The problem is, I can't figure out how to make the timer actually ...
0
votes
1answer
114 views
How to add a timer when application entering background state?
Here is what I have tried so far:
- (void)applicationWillResignActive:(UIApplication *)application
{
timer = [NSTimer timerWithTimeInterval:1 target:self selector:@selector(triggerTimer:) ...
1
vote
0answers
293 views
Schedule Tasks to execute methods in iOS
I would like to schedule tasks in iOS to execute a method depending on the time of the day and the day.
For example, I want to execute startMonitorRegion every day at 10pm and stopMonitorRegion at ...
-1
votes
1answer
256 views
How Do I Use NSTimer, start/stop?
How would I use NSTimer to make an action happen every second?
regards Nikita.
0
votes
1answer
39 views
How would you sense a held button?
How would I code something to sense if a certain button is being held down? and how would I add a timer into my application?
Regards, Nikita.
1
vote
3answers
81 views
Increase 3 seconds to the timer when the button has been clicked Cocos2d
Sorry this is probably a dumb question but I have been struggling with this for a while. I’m kind of new to Cocos2d, but I have a schedule timer set to 3 secs to make a sprite disappear and every time ...
0
votes
1answer
38 views
How to record app session duration?
I want to have an Game Center achievement in my application for playing my game for a certain length of time. However, I'm not sure how I would go about recording how long the user plays for. I was ...
2
votes
2answers
151 views
Take photo programatically using a timer
I'm looking for a method to make photo in Objective-C from code and an image displayer using a timer.
I mean: I would like an interface similar to the standard photo app, but the photo must not be ...
-1
votes
3answers
157 views
I have a NSDate, how do i show a stopwatch that auto updates showing a timer?
I have a NSDate variable. From that variable, how I can show a stopwatch that continuously updates in the view?
I've tried [NSTimer scheduledTimerWithTimeInterval] but can't get it working but also ...
-2
votes
1answer
167 views
Set up a temporary timer iOS [duplicate]
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:
- ...
1
vote
2answers
1k views
iPhone iOS how to add a running countup display timer to an app, like clock stopwatch app?
I'm working with an app that processes device motion events and updates interface in 5 second increments. I would like to add an indicator to the app that would display the total time the app has been ...
2
votes
1answer
260 views
CADisplayLink Timestamp acts strange on device
For my game loop and certain animations I want to know the time interval that has passed since the last call of my render: method.
For this I use the CADisplayLink and grab the current timestamp and ...
2
votes
2answers
278 views
Is the dispatch_after method being executed concurrently in this code?
int total = 0; // these are globals..
BOOL dispatchCalled = NO; //
-(void) callDispatch
{
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 0.3 * NSEC_PER_SEC), ...
0
votes
1answer
124 views
How do I implement a timer for this code?
-(void) play
{
CMMotionManager *motionManager = [[CMMotionManager alloc] init];
[motionManager startDeviceMotionUpdates];
BOOL timeReached = NO;
while(!self.stopButtonPressed)
{
...
1
vote
2answers
179 views
How to toggle on/off timer programmatically
This is what I want to do:
I want a timer, to fire a method and then, in the end of this method, be toggled off, and turn on an other timer on another method, and then entering a loop.
So what are ...
0
votes
1answer
66 views
set timer to change an UIButton properties
How can I make a timer that change the properties of a UIButton from hidden to show, and from show to hidden alternating between 4 buttons?
I'm using xCode 4.4
Thanks!
0
votes
1answer
900 views
iOS dev: timeIntervalSince1970 not updating when in a NSRunLoop
I'm fairly new to iOS development so I'm sorry if this comes off as a little silly.
but for the life of me I can't figure out why when I call (NSTimeInterval)timeIntervalSince1970 inside a Loop in ...
1
vote
1answer
106 views
iPhone/Objective-C: How to modify UILabel from timer
I have the following timer:
uploadGPS_timer=[NSTimer scheduledTimerWithTimeInterval:5.0 target:self selector:@selector(uploadGPS_tick:) userInfo:nil repeats:YES];
[self uploadGPS_tick:nil];
And ...
0
votes
1answer
133 views
If Statement Not Working Properly
Whenever the value of "_currentField" (which is a text field with number formatter) is greater then or equal to 1000 I want "_congrats" (which is a panel) to show up and when its less than 1000 I want ...
-1
votes
1answer
40 views
way to compare whats going on during a specific time? [closed]
So I have multiple timers going on at a given time, is there any way to say,
if (randomTimer isGoingOnAtTheSameTimeAs randomTimer2)
[self doSomethingAwesome];
any responses would be greatly ...
0
votes
1answer
99 views
trying to perform methods in 2 second intervals using NSTimer?
ok, so i have an array of strings of several methods that i want to run each in 2 second intervals.
i can't figure out how to do this tho, I've tried using a forward loop however like this:
SEL ...
1
vote
3answers
297 views
Set Up a Timer That Runs for the Life of an IOS App
I'm trying to figure out a way to have a timer that begins at the time that an app is installed and continues to run even when the app is in the background. I'm basically using the timer to ...
1
vote
2answers
356 views
ios - how to cause a delay in the middle of a method
I'm working on a card game and trying to get cards to deal one after the other. I have a method that animated a card from the deck to a player, and in viewDidLoad I call this method four times. The ...
0
votes
1answer
356 views
Objective C How do I make a timer that counts down from two minutes?
I searched around the internet for an answer but with no luck. I tried
- (void)viewDidLoad {
[super viewDidLoad];
twoMinTimer = [NSTimer scheduledTimerWithTimeInterval:1.0 target:self ...
0
votes
2answers
354 views
Objective-C iOS, set a delay for an update of text
I'm trying to find a solution to a problem I just stumbled upon.
Tried to search for it but it's not that I'm looking for.
I'm doing a GPS-app with two tabbars. I track the distance in the map-view ...
2
votes
1answer
124 views
iOS timing every ms
I am trying to interface through the microphone jack on the iPhone.
I need to update 15 bits constantly and I'm wondering if the best way to do this would be as follows:
I have a 16ms 'frame'. The ...
0
votes
2answers
101 views
iOS: event sets propert to nil after timer checks if property is nil
I have a timer that performs an operation on a property if it is not nil, but between checking for nil and performing the operation, an event sets the property to nil. There are in fact several ...
0
votes
1answer
153 views
Using the timer to check a condition inside a if
I have to develop an application where it does following things,
Switch is used to initiate the accelerometer
Then accelerometer data is inserted to an array of size 5
Then use those accelerometer ...
2
votes
3answers
1k views
How do I create an accurate timer event in Objective-C/iOS?
I'm looking to create a countdown timer for SMPTE Timecode (HH:MM:SS:FF) on iOS. Basically, it's just a countdown timer with a resolution of 33.33333ms. I'm not so sure NSTimer is accurate enough to ...
0
votes
1answer
237 views
How do I pause a stopwatch, then have it pick back up from where it started?
I am designing a timer that I want to be able to pause and continue from the same place. I tried doing it but the code wouldn't work for me. Here is my code:
.m file:
...
0
votes
3answers
145 views
Xcode is adding 2 instead of 1 all the time [duplicate]
Possible Duplicate:
Xcode: Why is my timer count 2 seconds on every tick?
In my app I have a timer that should go from 12:00 to 0:00, but it counts 2 seconds on every tick like this:
11.58
...
2
votes
3answers
441 views
execute functions with millisecond accuracy based on timer
I have an array of floats which represent time values based on when events were triggered over a period of time.
0: time stored: 1.68
1: time stored: 2.33
2: time stored: 2.47
3: time stored: 2.57
4: ...
0
votes
1answer
105 views
Simple Game - adding a countdown after scoring
I am creating a simple tennis game in Objective-C. Currently, when the player or the computer scores, it gives a message "tap to begin" and that releases the ball (it's a bit awkward to have your ...
0
votes
2answers
133 views
NSTimer does't work in CMD Project in xCode
I have problem with NSTimer in Objective-C. This is my source code:
Main.m
#import <Foundation/Foundation.h>
#import "TimerTest.h"
int main(int argc, const char * argv[]) {
...
0
votes
1answer
178 views
creating a timer for a level in iphone game
Im trying to add a timer to my game so that the user knows how long they have spent playing a level. Ive figured out that I can initialize a timer the following way:
bool showTimer = YES;
NSDate ...
1
vote
1answer
366 views
Calling method with NSTimer
I have a question about calling methods with NSTimer. So I'm using the following code to call a method after .5 seconds.
slimeDeathAnimTimer = [NSTimer timerWithTimeInterval:0.5 target:self ...
1
vote
2answers
90 views
How to display NSArray for given amount of time
I'm new developer in the beginning stages of writing a simple dictionary app for personal use on the iPhone, and I'm wondering what method to use to control how long my words are displayed on screen.
...
-6
votes
1answer
1k views
create a countdown timer in objective c (iPhone development) [duplicate]
Possible Duplicate:
How do I use NSTimer
I'd like to create a timer: When a user clicks a button the timer starts. After (e.g) two seconds the timer stops/resets and an action is performed.
...
0
votes
3answers
556 views
Objective-C Perform method at given time daily - messy implementation
I have the following (terible) method that constantly checks the current time, and when a certain time is reached (in this case midnight) an NSLog statement is run once to signify something useful ...
4
votes
1answer
469 views
iOS pong development, timer won't stop
I'm creating a simple pong game..
right now i wanted to set a timer which will stop after i loose and save the value to high score possibly, but even though i managed to set up the timer and set him ...