Tagged Questions
The nstimeinterval tag has no wiki summary.
20
votes
6answers
14k views
How do I break down an NSTimeInterval into year, months, days, hours, minutes and seconds on iPhone?
I have a time interval that spans years and I want all the time components from year down to seconds.
My first thought is to integer divide the time interval by seconds in a year, subtract that from ...
18
votes
3answers
4k views
What's the optimum way of storing an NSDate in NSUserDefaults?
There's two ways of storing an NSDate in NSUserDefaults that I've come across.
Option 1 - setObject:forKey:
// Set
NSDate *myDate = [NSDate date];
[[NSUserDefaults standardUserDefaults] ...
4
votes
4answers
852 views
Subtracting two NSDate objects
I´m getting date and time from a JSON feed. I need to find the difference between the date I´m getting from the feed and today´s date and time. Any suggestions how I can do this?
I know I need to ...
4
votes
3answers
6k views
calculate time difference in cocoa
I have got two timevalues in the format: %H%M%S (E.G.161500)
These values are text-based integers.
Is there a simple function in Cocoa that calculates the difference between these two integers ...
3
votes
1answer
169 views
running a time interval computation in the background
I have a NSTimeInterval which is basically
NSTimeInterval interval = [date1 timeIntervalSinceDate: [NSDate date]];
I want this computation to be always running in the background when I am in a ...
3
votes
4answers
2k views
How to parse an ISO-8601 duration in Objective C?
I'm looking for an easy way to parse a string that contains an ISO-8601 duration in Objective C. The result should be something usable like a NSTimeInterval.
An example of an ISO-8601 duration: ...
2
votes
3answers
73 views
How to store and compare time data objects
This should be really simple!
I have a shop, it opens at 8:30 and closes at 17:00. I want my app to say the shops current open or currently closed.
Whats the best way to store my open_time and ...
2
votes
1answer
4k views
convert NSTimeInterval to NSString in iphone?
How to covert the NSTimeInterval to NSString .I have
NSTimeInterval today = [[NSDate date] timeIntervalSince1970];
I have to give "today" as input as NSString.Please help me out.Thanks.
2
votes
1answer
670 views
Actually using UIDatePickerModeCountDownTimer as a timer
I am just trying to make a timer. I would like to use UIDatePickerModeCountDownTimer mode of the UIDatePicker, so that when the user simply selects say 15 mins in the picker, they are passed back to a ...
2
votes
2answers
2k views
How to pass NSTimeInterval object to detachNewThreadSelector withObject parameter?
I'm still new to Objective C syntax, so I might be overcomplicating this, but I can't seem to figure out how to pass an NSTimeInterval to a thread.
I want to initiate a thread that sleeps for x ...
2
votes
1answer
700 views
What is the proper way to convert a NSTimeInterval to a string, that works internationally?
I know the quick and dirty way of dividing by 60 to get minute, hours, etc
But is there an official way in the API already implemented, and using the appropriate language for minutes, seconds, etc?
...
1
vote
3answers
162 views
how to compare time with current date and time?
In My application I have to complete a particular task in given time.So first i calculated the time complete the task in seconds and then add that time to the current that like this.
NSDate *mydate = ...
1
vote
3answers
61 views
iPhone : integer overflow in expression
I get integer overflow in expression for NSTimerInterval, which is really a double.
NSTimerInterval paymentTermsInMilliSeconds = 30 * 24 * 60 * 60 * 1000;
What's the best way to handle timer ...
1
vote
1answer
325 views
NSTimeInterval format for POST with JSON objective-c to DateTime .net format
I retrieve the NSTimeInterval as follows:
NSTimeInterval milisecondedDate = ([[NSDate date] timeIntervalSince1970] * 1000);
Which logs this:
UNIX Timestamp: "1307710190993.865967"
I only want the ...
1
vote
3answers
416 views
Is a pointer used with a NSTimeInterval?
Do you use a pointer with a NSTimeInterval even though it is defined to be an int?
For instance do you use:
NSTimeInterval *time or
NSTimeInterval time
Thank You!
1
vote
2answers
493 views
Working with NSDate and Comparing with Dates in Objective C
"31-Dec-2010 9:00AM to 1:00PM"
Take the above NSString for example, I need to convert it to 2 NSDates e.g.
31-Dec-2010 9:00AM AND 31-Dec-2010 1:00PM
Then compare it with the current Date to see if ...
1
vote
3answers
2k views
how to pause and resume NSTimer in iphone
hello
I am developing small gameApp.
I need to pause the timer,when user goes to another view [say settings view].
when user comes back to that view , I need to resume the timer.
can anybody solve ...
1
vote
3answers
2k views
Using mod operator in iOS app
I have an NSTimeInterval that is stored as a double. I would like to get the amount of minutes that are inide of the second value using the % operator.
minutes = secondValue % 60;
where minutes is ...
1
vote
1answer
91 views
how to convert int to NSTimeInteravl in Objective-C?
Please do tel me how to convert int to NSTimeInterval?
Thank You.
1
vote
1answer
707 views
1
vote
2answers
482 views
How to make UIButton work like Launcher in SpringBoard, when pressed for long timeinterval
In my ViewController I am using UIButton which triggers some action when touchedUpInside. Upto here no problem, but i also want to add another action for touchDown event. More precisely i dont have an ...
1
vote
1answer
485 views
how can we count the time interval of the animation in cocos2d?
I am doing my program in cocos2d.
I am using NSDate to get the current time of the start of animation. And I know my animation takes 3 seconds. So I can get the time at completion of animation by ...
1
vote
1answer
557 views
Type casting in objective-c
Is there any way how can i convert a nstimeinterval type value to a string type in xcode?
Thanks in advance
Joy
1
vote
2answers
483 views
NSTimeInterval memory leak
I have a weird memory leak with NSTimeIntervall and NSDate. Here is my code:
NSTimeInterval interval = 60*60*[[[Config alloc] getCacheLifetime] integerValue];
NSDate *maxCacheAge = [[NSDate alloc] ...
1
vote
1answer
281 views
Application expiration using NSTimeInterval
How would I set this method to display the alert panel 30 days from the initial launch of the application?
-(void)awakeFromNib
{
NSDate * today = [NSDate date];
NSTimeInterval expiry = ();
if ...
0
votes
0answers
21 views
objective c - timeIntervalSinceDate not returning correct value depending on the date?
For certain values the following snippet doesnt return the correct values. It compares the current time with 2 other dates, that are saved in the phone. It does working for early hours but let's say ...
0
votes
1answer
37 views
Moving slider during a certain time
I have a slider with 96 slots and I need to moves slider step by step from 0 to 95 in 60 seconds. Should I use NSTimer with interval (60/96) and 96 repeats or there is a better solution for this?
0
votes
1answer
61 views
iphone daemon NSTimer interval when in standby mode
NSTimer *timer = [[NSTimer alloc] initWithFireDate:[NSDate date] interval:60 target:manager selector:@selector(queryServer) userInfo:nil repeats:YES];
[runLoop addTimer:timer ...
0
votes
1answer
46 views
NSTimeInterval in UTC?
I am calculating current time Interval using following codes:
NSTimeInterval tInt=[[NSDate date] timeIntervalSince1970];
int tInterval=(int)tInt;
Is this timestamp is in utc time ?
I need ...
0
votes
2answers
85 views
NSDate to GMTDate to JSON format
I want to convert my Local date ([NSDate date]) to GMT to create a JSON string (/Date(1324435876019-0000)/).
My code works fine when i set my clock to EST time zone when i change my timezone to PST ...
0
votes
0answers
58 views
NSTimeInterval shows in simulator not in iPhone
I have this problem: the App runs in iPhone 5.0 Simulator but not in the iOS device.
In the simulator the numbers show correct but in the device shows "0"
this is the code:
- (void) setDates
{
...
0
votes
0answers
14 views
Highlighting text according to video
I am playing one video and along with that video I want to highlight the text spoken in video.
I have done some coding as follows,
but the video plays after the sleep time specified in updateLabel, ...
0
votes
1answer
84 views
How to set NSTimeZone to Date picker controller in iphone
I had created a Date picker controller and want to set the timeinterval to 12hrs pragmatically.
But i cant do that, i think this is very simple problem but please help me for this.
Thank you in ...
0
votes
1answer
86 views
How can I convert a NSInteger to a NSTimeInterval
I have slideTimer which is a NSInteger and I want to convert it to NSTimeInterval.
I tried like this:
NSTimeInterval slider = (NSTimeInterval)slideTimer;
but it is not working.Any idea?
0
votes
2answers
73 views
Unexplained crash with NSTimeInterval
I cant seem to figure out a bug with a piece of code change that is causing a hard crash in my app without much of a debugging trail.
Here is the original method
+ (NSArray *)currentReservations {
...
0
votes
3answers
253 views
NSTimeInterval to NSDate
How can I convert a NSTimeInterval to NSDate? Think of it like a stopwatch. I want the initial date to be 00:00:00, and I have a NSTimeInterval of X seconds.
I need to do it like this because the ...
0
votes
1answer
77 views
How to update ApplicationBadgeIcon in iPhone App?
I am using applicationiconbadge in my app. I am setting it to 100 and I have to decrement it till 0 and give some alerts in meanwhile. Now when I close my app by pressing homescreen, I can see badge ...
0
votes
1answer
68 views
Objective C timestamp is not equal to java timestamp
I am working on an application receiving data from a backend. The problem is, that the dates are not working properly in my app. So I ended up comparing the timestamps generated by cocoa and the ones ...
0
votes
2answers
276 views
NSTimeInterval to unix timestamp
I'm getting CMDeviceMotion objects from CMMotionManager. One of the properties of the CMDeviceMotion is timestamp, which is expressed as a NSTimeInterval (double). This allows for "sub millisecond" ...
0
votes
1answer
62 views
Change the time interval of a Timer
here is my question:
Is it possible to increase the "scheduledTimerWithTimeInterval:2 "for example of "3" after 10 seconds in ViewDidLoad for example.
like this: [NSTimer ...
0
votes
0answers
48 views
NSTimeInterval ratio/resolution
How can i get the timer to fire every 10 ms? i can only get it to fire at a 1:1 ratio..eg 02:05:500, 02:06:600, etc. I'm after 1:100 ratio or resolution. eg 02:05:510, 02:05:520, 02:05:530...
...
0
votes
1answer
157 views
NSTimer to display Minutes:Seconds:milliseconds
Can anyone please tell me how to display milliseconds in this piece of code?
-(void)updateViewForPlayerInfo:(AVAudioPlayer*)p
{
countdownTimer = [NSTimer scheduledTimerWithTimeInterval:0.1 ...
0
votes
1answer
96 views
NSTimeInterval from text input
I got a question for anyone with a spare moment and an answer...
I need to change an NSString value to input into the AVAudioPlayer start offset
eg. player.currentTime = 0; I want to change the ...
0
votes
1answer
64 views
Shouldn't this give me the current date/time in seconds?
I want to calculate an oscillating offset value based on the current time in seconds so that any object can call this method and would get an offset returned that is synchronized to any other object ...
0
votes
2answers
132 views
iPhone - Problem with NSDate to get time interval according to current time zone
I am using NSDate to get the NSTimeInterval according to current time zone.
But I'm getting information related to UTC.
I'm using methods like "dateWithTimeIntervalSinceNow" and ...
0
votes
3answers
257 views
Objective-c format time left until certain date
I'm creating a countdown timer and I need to printout the time left (hour:minute:seconds) until a specific date. I've found how to get the time interval between Now and the target date but I don't ...
0
votes
1answer
197 views
Seconds between two dates ([NSDate date] and future unix time)
I am parsing a unix time stamp into an NSNumber. This time is always in the future.
Example: 1312931548243 = 9 August, 2011 7:12:28 PM EDT GMT-4
I need to calculate the time between this future time ...
0
votes
1answer
31 views
Random bit double questions
I saw the following line in GTMHTTPFetcher.m of gtm-http-request:
// set min interval to a random value between 1.0 and 2.0 seconds
minRetryInterval_ = 1.0 + ((double)(arc4random() & 0x0FFFF) / ...
0
votes
2answers
416 views
[NSCFString timeIntervalSinceReferenceDate]: unrecognized selector sent to instance
I would like to compare difference between two dates, but with the code below I got the error "[NSCFString timeIntervalSinceReferenceDate]: unrecognized selector sent to instance." What's wrong with ...
0
votes
1answer
202 views
iOS UITextField formatted for time
I have a UITextField which I created programmatically. This text field is used to input a time. The placeholder text is "00:00:00.000". When the text field is tapped, a number pad will appear. ...