The nstimeinterval tag has no wiki summary.
0
votes
1answer
27 views
Is there any function like sleepWithTimeInterval() in Xcode?
When using Linux, there is two simple sleep function sleep() and usleep().
But as OS X provides a useful timer data type NSTimeInterval as double, is there any simple function like ...
0
votes
1answer
40 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 ...
0
votes
1answer
52 views
convert time interval since reference to time interval since 1970
i want know if it's possible convert this time interval:
TimeIntervalSinceReferenceDate
to this time interval:
TimeIntervalSince1970
without create a new NSDate, thanks!
1
vote
4answers
69 views
How accurate is NSTimeInterval
I am trying to get the time difference between two NSDates.
NSDate *d1 = somedate;
NSDate *d2 = someOtherdate;
NSTimeInterval sec = [d2 timeIntervalSinceDate:d1];
How accurate is NSTimeInterval?
...
0
votes
1answer
20 views
Calculate the seconds while the app was in background
I am trying to find out the amount of time the app was in the background. Everything compiles fine, but my counter is not incremented with the amount of time the app was in the background.
...
1
vote
3answers
56 views
Why do I get always a cached location in ios
In my app I'm comparing two locations. One is the actual location and the other is a fixed one. I set the second location by a button. When a certain distance is covered I'm prompted with an ...
0
votes
6answers
27 views
UIButton text appear for sometime and it shows emptytext for anothersometime in ios?
I am new in iOS development. I want to show UIButton text for 1 second, and show no text for another 1 second. Can any one tell me the logic in iOS?
1
vote
1answer
58 views
Timestamp. Difference between two times
I'm trying to make a timestamp-app where you capture the times with one button.
When the button is pressed it prints out the current time 00:00:00.
When the button is pressed the second time it ...
0
votes
0answers
66 views
How to extact some parts of a video at exact timeintervals in ios
I am using GPUImage framework to record a video from camera. I want to extact multiple videos from the recorded video according to saved NSTimeIntevals.
What I am doing is:
When view loads I start ...
0
votes
1answer
121 views
iOS Finding the time passed since a specific date
I have been playing with NSDate and NSTimeInterval to try and get the time passed since a specific date, but I am not having much luck.
I want to specify an exact constant date (Jan 5th 2012 2PM) ...
0
votes
0answers
159 views
Chronometer with pause button accumulated delay in iOs
I have a Chronometer in iOs and it works fine only one time. The Stop and Play button haven't problems. I click on play to start and then click on pause, if I click on play again the counter ...
0
votes
1answer
52 views
what to check if tasks had been done in between a time interval
I'm not very good with time logic, but will like to check if an user had done a specific task with integer (INT) and Bool (DN) in an interval of 2 minutes.
The pseudo code is this
Deduction Function ...
0
votes
2answers
160 views
Xcode - NSTimeInterval Years double value, how to get MORE decimals?
i wan't to know exactly how many years it is between 2 NSDate's. (current Date and Date picker date)
i'm using NSTimeInterval (seconds) how to make it to years?
This code will make the value to ...
0
votes
4answers
90 views
Ordering NSStrings that are numbers of a particular format (ex 3:23.123)?
I have NSStrings that represent times of the format mm:ss.SSS in my app. I am trying to generate a list of "fastest times" and I'm struggling trying to figure out what data types to use to order these ...
1
vote
1answer
238 views
Difference between dateWithTimeInterval:(NSTimeinterval) sincedate:(nsdate *) and (nsdate *) dateByAddingTimeInterval:(NSTimeInterval)
what is the difference between the two statements
NSDate *today = [NSDate date];
NSDate *tomarow = [today dateByAddingTimeInterval:60*60*24];
NSDate *nextday = [NSDate dateWithTimeInterval:60*60*24 ...
0
votes
2answers
608 views
How to convert NSTimeInterval to seconds (for backgroundTimeRemaining)
I'm running test on measuring how much time left for background task time remaining. I have read several examples and saw that everyone doing it like:
UIApplication *app = [UIApplication ...
-1
votes
3answers
148 views
Converting objective c method to c# stringWithFormat:@“%@%.0f%@”
Okay, I am working on converting some objective c code to c# here is what I have.
NSTimeInterval now = [[NSDate date] timeIntervalSince1970];
NSData * formattedstring= [[NSString ...
0
votes
2answers
138 views
NSTimeInterval seems to be wrong for last day of the given month- iOS
In my local database, I have a list of NSTimeInterval values saved.
I have to find out and fetch all records available in a given Month. The only problem is in fetching records for last day of the ...
-1
votes
2answers
1k views
How to use NSTimeInterval properly?
I'm new to Xcode and I have the following problem:
I want a method that gives me the time that as passed since a given date till now.
If it was 2 years ago I want to return a string "2 years ago", ...
1
vote
1answer
88 views
How to add the output of multiple timers
My utility app will have 20 individual timers, laid out like this:
- (void)updateTimer
{
NSDate *currentDate = [NSDate date];
NSTimeInterval timeInterval = [currentDate ...
0
votes
1answer
66 views
Best way to calculate and save user use time in application
What is the best way to calculate the user's use time in my application. Is it ok to save it in NSUserDefaults? In which format I should save it?
I want to know if the user lets say played the app ...
0
votes
2answers
117 views
Adding two values in the strings together in ios
I would like to add the values in the strings together which are in the format:"HH:mm:ss.SSS" and display it back again. In my case, it is adding timeString with difference to get currentString. I am ...
0
votes
1answer
122 views
timeIntervalSince1970 crashing with NSUserDefaults
I'm trying to show a UIALertView every 4 days. But getting a crash because:
NSInvalidArgumentException', reason: '-[__NSCFString timeIntervalSince1970]:
I tried using different approaches like the ...
0
votes
1answer
32 views
Get Missing Months from timeInterval? [duplicate]
Possible Duplicate:
Get missing month from timestamp Interval
I am receiving time in terms of seconds from server. Then i am using the below code to convert them into months.
...
1
vote
2answers
742 views
NSDate but no NSTime , how to convert a string representation of time (without date)
My problem is I want to have some way to represent time (without date), like time of day in my iOS app. From a REST api I get strings like "13:12:11" which shows the time something happens, I have ...
1
vote
2answers
1k views
How do I count time in iOS?
I don't want to set up a timer that "fires" (and does something) after a certain amount of time has passed.
Therefore, I'm not interested in the NSTimer class and its methods.
All I'm interested in ...
1
vote
0answers
102 views
NSDateFormatter takes incorrect time interval
I have the method below to format a duration (in seconds) to a string of the format @"mm:ss". Whenever the particular value of 60 is entered, this method behaves unexpected:
duration = 59 -> ...
0
votes
1answer
87 views
NStimer issue in Cocoa-Touch
My application needs to show a temporary message, so I created Toast like android myself. It works well for only one toast. I am using NSTimer to hide the message. If I display more than one toast the ...
0
votes
1answer
102 views
Nice way to print a dynamic duration to NSString [duplicate]
Possible Duplicate:
Fuzzy Date algorithm in Objective-C
How do I break down an NSTimeInterval into year, months, days, hours, minutes and seconds on iPhone?
I am interested in printing ...
0
votes
2answers
65 views
How to use automatic scheduled actions to be fired when firing timing may change?
In a certain view I wish to have a certain method fired when the firing timing is based on an array of NSTimeIntervals (which I keep in as NSArray holding double values).
So I have a method that does ...
1
vote
2answers
477 views
Objective-C, Calculating NSTimeInterval correctly?
I'm trying to calculate (in milliseconds) how much time went by while completing operations in my app. I've read through most of the documentation and looked through examples, although my app seems to ...
0
votes
1answer
451 views
NSTimeInterval since1970 to NSDate
I have the following code:
-(void)setDate:(double)dateInterval {
NSDate *date = [NSDate dateWithTimeIntervalSince1970:(NSTimeInterval)dateInterval];
NSLog(@"NSDate-Result: %@", [date ...
0
votes
0answers
49 views
Break down NSTimeInterval
I'm currently writing an app to catalog and sort ski racers. I was wondering how would I break an NSTimeInterval up into minutes, seconds, decaSeconds. For example: 16:21:6 (16 minutes, 21.1 seconds)
0
votes
0answers
77 views
Objective-C – NSTimeInterval in a class method returns 0
I have a class method that looks like this:
+ (NSTimeInterval)calculateTimeDifferenceBetweenEventDate:(NSDate *)eventTime andEventTime:(NSDate *)eventDate {
NSTimeInterval timeDifference = ...
0
votes
0answers
58 views
repeat interval not working for cutom time duration
While trying to add custom time interval for repeat interval not working.
NSTimeInterval frequency_time_interval = 1 * 60 * 2;
NSDate *date_picker_date_with_time_interval = [[datepicker date] ...
0
votes
4answers
204 views
Difference between dot syntax and valueForKey
Please note that update 3 is probably most relevant
Im setting a NSTimeInterval property of a managed object with an nsdate object using setValue:forKey:
When i attempt to get the value I get weird ...
1
vote
2answers
295 views
Ajax call with Time interval zend framwork
What i want to do is basically to retrieve div and sub div content every 3 seconds. I am using ajax to send the data to the controller. but i am getting
$.ajax is not a function
...
1
vote
2answers
294 views
Reconciling CACurrentMediaTime() and deviceCurrentTime
I am trying to synchronize several CABasicAnimations with AVAudioPlayer. The issue I have is that CABasicAnimation uses CACurrentMediaTime() as a reference point when scheduling animations while ...
6
votes
3answers
4k views
How to convert NSTimeInterval to int?
How do I convert NSTimeInterval into an Integer value?
My TimeInterval holds the value 83.01837. I need to convert it into 83. I have googled but couldn't find any help.
1
vote
2answers
1k views
How to convert NSTimeInterval(double)(seconds) value into Minutes and Seconds?
I am playing a video using MPMoviePlayerController and i need to constantly update the current play back time in an UILabel. I am using NSTimeInterval currentProgress = ...
0
votes
1answer
531 views
Convert NSTimeInterval to NSString in 00:00:00 clock format
The task at hand is pretty simple — convert NSTimeInterval to NSString that looks like 12:34:56 (for 12 hours, 34 minutes and 56 seconds).
2
votes
2answers
608 views
Create a global variable to store time from NSDate?
I want to store the time during the run of the program to a global variable when it satisfy a if condition, So when new time is received it should be stored in the global variable,
Here in my if ...
0
votes
3answers
642 views
NSDate conversion issue in iOs
I am having a double value that represents a NSTimeInterval. I want to create the correct date from the double value, here is my code. I am getting the output, but there is some changes from the ...
1
vote
2answers
2k views
Calculate time difference between 2 time intervals - Logic issue
I have a String with the time as follows;
NSString *time = "06.45 pm";
I need to assume that this time is on today's date and then get the current System time, and calculate the time difference ...
0
votes
1answer
271 views
NSTimer/NSTimeInterval
Im trying to make a timer that counts down from 30 to 0 but this is the only way i could think to make it work, but it doesn't work. Anyone know what im doing wrong?
.h file
@interface ...
0
votes
1answer
1k views
Xcode - setting limit for NSDate CountDown timer
Iam using xCode 4.3.2, In my count-down timer project (code showing below), i want to stop the count-down after 30 seconds. How can i set this limit for my count-down?
Could you please help me?
int ...
-1
votes
1answer
583 views
How to compare the NSTimeInterval(NSNumber Objects) inside a NSMutableArray?
I have two NSMutableArrays(arrayContainsGoodClicks and arrayContainsBadClicks). I am initializing these Arrays with some NSTimeInterval values when the relevant Good and Bad buttons are clciked. Now ...
2
votes
3answers
566 views
How to store NSTimeInterval values into a NSMutableArray?
I have a requirement where i have a Video that is played using MPMediaPlayerController. Along with the video i have two buttons where i need to capture the current playback time when the button are ...
2
votes
1answer
132 views
Performance overhead for frequent (5Hz) Core Data saves
For an iPhone app that plays audio files, I'm working on a system to track the user's progress in any episode they've listened to (eg, they listen to the first 4:35 of file1, then starts another file, ...
0
votes
2answers
1k views
calculating 'timeIntervalSinceNow' with a negative value (CLLocation example)?
i don't understand this example from the doc : the timeIntervalSinceNow method should show a positive value, but how can we reach "5" as mentioned in the code? (i think it's either 0 more or less, or ...