An Objective C class for creating timer objects.

learn more… | top users | synonyms

4
votes
4answers
63 views

UIAlert View when no button press count 10seconds and do something [duplicate]

In my UIAlertView I have two buttons Yes, No. If I press Yes do something and if I press No cancel the UIAlertView so I can do this but my problem is that If I don't press any button it counts 10 ...
0
votes
1answer
14 views

ECSliding, two menu, timer malfunction

I'm using ECSliding and I have this problem! I have a topView and two menus, left (LeftViewController), right (RightViewController), both UIViewController. In the right menu I have a timer: ...
0
votes
2answers
26 views

Making a timer to very slightly delay several audio channels for iPhone app?

I have 5 audio channels being operated by five AVAudioPlayer objects, and I would like to add a very small delay to each of these channels, so that when I push a button, I get this: Start sound 1 ...
0
votes
1answer
33 views

How to call a method every nth minute while app is in background?

Hello everyone I need to call a method when the app is in background. This is now i am trying to achieve this but the timer is never called. - (void)applicationDidEnterBackground:(UIApplication ...
0
votes
1answer
34 views

Pause and resume repeatable NSTimer when closing and opening window

Now I know there are questions on SO about NSTimer pause, but none on repeatable and closing/opening windows. Toggeling pause works perfect (checked using button). Reopening window gives BAD_ACCESS ...
0
votes
1answer
35 views

Reset NSTimer after navigating to another view

Currently I am developing a game which needs a stop watch say 1 minute,when user taps the play button it enters the game screen,I want the to run the stop watch count down of 1 minute ...
0
votes
3answers
59 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
1answer
39 views

Calling A Method At Specific Time Every Day

My app runs constantly in kiosk mode. Once every 24 hours at a specific time I need to sync some data from core data to a web service. I know how to do the sync piece but I don't know how to ...
1
vote
2answers
49 views

How to use NSTimer to stop an action?

On the main view in my app, there is a refresh button. I would like for NSTimer to start on click and if 15 seconds pass and the app cannot connect to the server, I would like for it to stop trying to ...
0
votes
3answers
69 views

updating UILabel from appDelegate

I have been having this issue from last couple of hours and did all the search that i could but unfortunately, i didnt find anything that resolves my issue.... Scenario: i have a CountDownTimer in ...
0
votes
2answers
40 views

Getting updated server time every second

I have a requirement where I need to know what is the server time at a given point of time in the app. As soon as the app connects to server, the server sends back the time and I am not sure how to ...
0
votes
1answer
43 views

NSTimer in AppDelegate does not update UILabel in UIViewController

My goal is to start a timer in the app delegate and use it to call methods in other view controllers. When these methods are called they will update the text of the UILabel. I'm performing the method ...
-1
votes
7answers
180 views

Update Text Label From Another View

I have an NSTimer that runs every 10 seconds and is kicked off from LandingController.m. It continues to run as you go to other views in the application. I want to be able to (when a certain ...
0
votes
2answers
35 views

NSTimer or NSNotification… which is faster and/or more friendly to iOS system [closed]

BTW: This mostly is in reference to iOS 6+: I have an app that -- from many different places in the app -- performs a function that can be backgrounded safely, and is thread safe. I do not wish to ...
1
vote
1answer
58 views

Is it possible for a NSTimer to trigger before the specified time?

I have been using NSTimers to trigger certain events in my app which are time-sensitive (basically that have to happen when I tell them to happen with up to the second resolution). However, I have ...
0
votes
5answers
73 views

NSTimer Not Stopping When Invalidated

I have the following code in my .h file: #import <UIKit/UIKit.h> #import <CoreLocation/CoreLocation.h> #import <AVFoundation/AVFoundation.h> #import <MapKit/MapKit.h> ...
0
votes
1answer
30 views

Does NSTimer run across entire app?

If I start an NSTimer like this: @property (strong) NSTimer * messageTimer; self.messageTimer = [NSTimer scheduledTimerWithTimeInterval:10.0 target:self ...
0
votes
1answer
38 views

Start & Stop Timer

I have a timer that calls a function every 10 seconds: [NSTimer scheduledTimerWithTimeInterval:10.0 target:self ...
0
votes
0answers
15 views

How to kill / unload previous view while loadin new with segue

My problem is that I can't unload a view while loading a new one, this causing a problem with Nstimers! Can't stop Them... So would be nice to know how to kill or unload previous view or how to stop ...
0
votes
1answer
33 views

MonoTouch running NSTimer even when app is in background

In my app i want to run the Timer even when app goes in the background. I guess there are two ways to do it Using thread Capturing time when app goes in background and comes back I dont know ...
3
votes
2answers
32 views

how to I understand how much downloaded of file with NSURLConnection

I have one application that downloaded file from url with NSURLConnection. I want when to click download on button progressView starts. in top of progressView is UILable that show me status download. ...
0
votes
0answers
8 views

NStimer multiplies each time I reload view

I have a one viewController which serves for 2 screens (main and settings) in the view did load I have a timer that repeats unlimited times (checking condition)! when I load setting screen and go ...
0
votes
1answer
45 views

Oscillating AVAudioPlayer Volume in Xcode

I'm trying to get the volume of an AVAudioPlayer to oscillate over time. Ex: Every 10 seconds, adjust volume to 0.5, then to 1.0, etc. I have tried using an NSTimer but it only works the first time ...
1
vote
3answers
77 views

UILabel Not Updating When Returning to UIViewController

I have a simple app that has an NSTimer object in the appDelegate to be accessed by all views. The structure of the app is with a UINavigationController. When I fire the NSTimer object, my UILabel is ...
0
votes
1answer
29 views

Do an action if a button is pressed for a select amount of time

I'm making a little game for myself, and I want a void to fire for every 0.1 seconds that the UIButton is pressed down (e.g., if the button is pressed for 0.7 seconds, the void will fire 7 times ...
1
vote
1answer
67 views

NSTimer blocks other animations

I have a NSTimer that updates an UILabel every second. I have another UIimageView that slides in the screen when a button is pressed. The problem is that when the NSTimer updates the UILabel, the ...
0
votes
2answers
48 views

How can I have an NSTimer going throughout the entire time the user is in the app?

How can I have an NSTimer going throughout the entire time the user is in the app? I want to be able to change view controllers and perform different functions, all while a timer is going on int the ...
0
votes
1answer
34 views

How does this NSTimer Pause / Resume work?

I'm using the following code I found to pause and unpause an NSTimer. I hate not knowing how code works, so I'm hoping someone can give me a brief explanation of what's happening here. What's the ...
0
votes
1answer
26 views

Introducing a delay till the NSViewAnimation is over in Cocoa

I am working on a Cocoa App. In one of the methods, i am doing an NSViewAnimation for .6 seconds.But, the code right after the line "[theAnim startAnimation]" is executed during animation itself. I ...
2
votes
3answers
40 views

Detect Pause when user stop type in UISearchBar

I have the following UISearchbar code: - (void)searchBar:(UISearchBar *)searchBar textDidChange:(NSString *)searchText { NSTimer *myTimer; NSLog(@"Timer=%@",myTimer); if (myTimer) { ...
0
votes
2answers
42 views

initWithFireDate repeat every day

This application is for OSX. I'm using NSTimer to run a method at a certain time of the day. NSCalendar* myCalendar = [NSCalendar currentCalendar]; NSDateComponents* components = [myCalendar ...
0
votes
2answers
51 views

How to run another thread and using that thread run timer to repeat process?

Hi i want to start a timer with another thread and want to repeat process in that thread. i had tried but it doesn't work. my code snippet is given below [NSThread ...
1
vote
1answer
38 views

Timer that updates label running in background

I have coded a timer using an NSTimer that updates a label. The problem is that in the same viewcontroller I have a uitableview and when I scroll it down, the timer doesn't update its value so the ...
0
votes
2answers
41 views

iOS : code creates two NSTimers

When I create a new timer with an IBAction and I double click the button, it creates two timers. How can I write the code so there's only 1 timer and if I push the button it doesn't create a new ...
0
votes
0answers
31 views

“EXC_BAD_ACCESS” while trying to animate a image with an NSArray and NSTimer

I am back again with my pigs (means cochon in French)! :) I would like to created a at simple animated image with an NSTimer and I can't find example of it not with the iphone SDK. after 3 second, ...
0
votes
1answer
28 views

NSTimer selector not repeating

In my AppDelegate I have defined AppDelegate.h @property (strong, nonatomic) NSTimer *notificationTimer; AppDelegate.m @synthesize notificationTimer = _notificationTimer; - ...
-1
votes
0answers
69 views

How to set the visible view controller in navigation controller switching between tab bar items of Tab bar controller ?

My sample application has a UITabBarController with five tabs bar items each of which invokes a navigation controller. Initially the first tab bar item is selected, when another tab bar item is ...
0
votes
2answers
34 views

Using NSTimer in NSObject class

I am displaying a custom UIView (which is like UIAlertView) on clicking a button in many view controllers.So, I have included that code in NSObject class. I have to display UITableView as a subview to ...
0
votes
1answer
77 views

pausing timer,uiview animation and audio iOS

I have a viewController where I am playing a sound using AVAudioPlayer and a timer is running for 2 minutes using NSTimer and a sequence of animation is being played using [UIView ...
0
votes
1answer
28 views

Getting error with NSTimer

Im getting an expected expression error in the line below that is : for (int i = [timeArray count] - 1; i >= 0; i-) { specifically the i-) its messing with things and I don;t know what to do. ...
0
votes
1answer
36 views

NSNotication at time of day

I need my application to run method at a certain time of day, I think the best way would be to set up a notification for when it would get that time. I have used NSNoticationCenter before but I'm not ...
0
votes
2answers
15 views

NSTimer and UICollectionView

I can show some code if necessary, but I don't believe my question will need it because it's fairly general. I have a UIView that has a UICollectionView in it. It's a 10 x 10 grid with a custom ...
0
votes
1answer
36 views

NSTimer method calls multiple times

I am developing one application,in that i have one requirement.onTyping method calls on textfield text change.when i enter first letter on textfield ontying method get called and timer starts ...
1
vote
1answer
30 views

Fire method when a specific nsdate has passed

I want my App to call a method at an setter NSDate (It only needs to happen when the app is active, I'll handle passed events on launch in the app delegate). I read about some ways to achieve such a ...
0
votes
0answers
32 views

Best way to speed up the beep rate of a countdown on iOS

My previous question got closed down for being too ambiguous, so let me give this another shot. I am creating a simple word game called Catch Phrase on iOS for learning purposes and am having trouble ...
0
votes
1answer
82 views

How to pause/resume a NSTIMER? [duplicate]

I am using NSTimer like this GameTimer=[NSTimer scheduledTimerWithTimeInterval:60.0/60.0 target:self selector:@selector(Move) userInfo:nil repeats:YES]; In the Move method I update the position ...
1
vote
1answer
41 views

NSTimer responding to a uibutton

So, Here is the problem. I am trying to make a timer for my game however it doesnt seem to run. I started by making a property for nstimer: @property (nonatomic) NSTimer gameTimer; and ...
0
votes
1answer
36 views

How to check if device is on every hour using

I am trying to figure out how to initiate a method call ever hour while my app is running. I have created the following method which is started once the ViewController is loaded but the problem is, ...
1
vote
2answers
75 views

NSTimer, NSRunloop and deep sleeping mac

I'm programming an app in objective-c on mac and I need some help. Each day, at 23:59, my app is calling a method to generate a report with NSTimer *timer = [[NSTimer alloc] ...
0
votes
1answer
30 views

segue fired by NSTimer

im pretty new to the iOS thing and i think this should be easy to answer: i have a Master-Detail-Application with many subviews which works fine and in the background i have several timers running. ...

1 2 3 4 5 23