Tagged Questions

NSDate is an objective-c class of the Foundation framework. NSDate objects represent a single point in time.

learn more… | top users | synonyms

21
votes
3answers
14k views

NSDate get year/month/day

How can I get the year/month/day of a NSDate object, given no other information? I realize that I could probably do this with something similar to this: NSCalendar *cal = [[NSCalendar alloc] init]; ...
21
votes
5answers
19k views

Sort NSArray of date strings or objects

I have an NSArray that contains date strings like this: "Thu, 21 May 09 19:10:09 -0700" I need to sort the NSArray by date. I thought about converting the date string to an NSDate object first, but ...
20
votes
2answers
10k views

NSPredicate: filtering objects by day of NSDate property

I have a Core Data model with an NSDate property. I want to filter the database by day. I assume the solution will involve an NSPredicate, but I'm not sure how to put it all together. I know how to ...
20
votes
3answers
78k views

NSDate and NSDateFormatter - short format date and time in iphone sdk

searched for answers, but the one's i found didn't seem to be ipone specific. I basically need to get current date and time separately, formatted as: 2009-04-26 11:06:54 edit: The code ...
19
votes
4answers
50k views

Convert NSDate to NSString

How do I convert an NSDate to an NSString so that only the year in @"yyyy" format is output to the string?
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] ...
17
votes
3answers
6k views

objective-c setting NSDate to current UTC

is there an easy way to init an NSDate with the current UTC date/time?
17
votes
4answers
10k views

How to Check if an NSDate occurs between two other NSDates

I am trying to figure out whether or not the current date falls within a date range using NSDate. For example, you can get the current date/time using NSDate: NSDate rightNow = [NSDate date]; I ...
17
votes
13answers
4k views

Fuzzy date algorithm

I'm looking for a fuzzy date algorithm. I just started writing one and realised what a tedious task it is. It quickly degenerated into a lot of horrid code to cope with special cases like the ...
14
votes
7answers
7k views

How to determine if an NSDate is today?

How to check if an NSDate belongs to today? I used to check it using first 10 characters from [aDate description]. [[aDate description] substringToIndex:10] returns string like "YYYY-MM-DD" so I ...
13
votes
5answers
241 views

How can I format a date in Objective-C similar to the jquery.timeago library?

I have a feed of items displayed in table cells, part of which is a date / timestamp in the past. In Objective-C, how can I accomplish formatting them in the same manner as the jquery.timeago plugin ...
12
votes
2answers
18k views

NSString to NSDate

I got a string that contains the current date by using this : NSString *date = [[NSDate date] description]; At a different point I want to retrieve the date from this string and I used the ...
11
votes
5answers
5k views

Comparing two NSDates and ignoring the time component

What is the most efficient/recommended way of comparing two NSDates? I would like to be able to see if both dates are on the same day, irrespective of the time and have started writing some code that ...
10
votes
4answers
15k views

Convert UTC NSDate to local Timezone Objective-C

Does anyone know how to convert a UTC NSDate to local timezone NSDate in Objective C?
10
votes
5answers
6k views

Nil NSDate when trying to get date from UTC string in zulu time

Writing an iPhone app in Objective-C, I have a date in string form (in UTC format, with a Z on the end to denote zero UTC offset, or zulu time), which I need to parse into an NSDate object. A bit of ...
9
votes
3answers
13k views

How to convert NSDate into unix timestamp iphone sdk

How to convert an NSDate into Unix timestamp? I've read many posts which do the reverse. But I'm not finding anything related to my question. Thanx in advance.
9
votes
12answers
14k views

How do I get the current date in Cocoa

I'm getting started developing for the iPhone and as such I am looking at different tutorials online as well as trying some different things out myself. Currently, I'm trying to create a countdown ...
8
votes
1answer
6k views

How Do I write a Timer in Objective-C?

I am trying to make a stop watch with NSTimer. I gave the following code: nst_Timer = [NSTimer scheduledTimerWithTimeInterval:0.001 target:self selector:@selector(showTime) userInfo:nil ...
8
votes
2answers
4k views

iPhone iOS 4 addTimeInterval deprecated

I'm using addTimeInterval for creating local notification but it seems that it is now deprecated (iOS 4). My code: localNotif.fireDate = [now addTimeInterval:timeInterval]; Xcode's warning: ...
7
votes
3answers
460 views

how to split strings in objective c

How to split a string in objective-C? I am working on an short application that contains a date picker. I do display date get it from date picker and display it through a label. My main question is ...
7
votes
5answers
11k views

NSDate - Convert Date to GMT

I need the ability to convert a NSDate value to a GMT Date. How can I go about converting a NSDate value to a GMT formatted NSDate value, independent of what ever date locale settings the iphone is ...
7
votes
2answers
7k views

add NSTimeInterval to NSDate in cocoa

I've got a NSDate that represents a specific time. The format of that date is hhmmss. I want to add an NSInterval value (specified in seconds) to that time value. Example: NSDate = 123000 ...
7
votes
4answers
12k views

Modifying NSDate to represent 1 month from today

I'm adding repeating events to a Cocoa app I'm working on. I have repeat every day and week fine because I can define these mathematically (3600*24*7 = 1 week). I use the following code to modify the ...
6
votes
2answers
257 views

How do I subtract a duration from an NSDate, but not include the weekends?

Using today as an example, how do I determine which date it was, 230 workdays ago? I know how to do it iteratively with a while loop checking date and subtracting 1 if it's a workday, but I'm ...
6
votes
3answers
227 views

How is [NSDate date] calculated?

I'm using part of the current date in a scheme on a web server and I want to generate the same value on the device as on the server. In theory I thought about a case where these two values wouldn't be ...
6
votes
4answers
2k views

How do i add 1 day to a NSDate?

Basically, as the title says. I'm wondering how i could add 1 day to an NSDate. So if it were: 21st February 2011 It would become: 22nd February 2011 Or if it were: 31st December 2011 It would ...
6
votes
2answers
1k views

Convert NSString of a date to an NSDate

This might be a silly question, but I can't seem to find the answer on here or in the documentation. I want to convert an NSString such as @"9/22/2010 3:45 PM" to an NSDate. I know to use ...
6
votes
5answers
5k views

iPhone OS: How do I create an NSDate for a specific date?

Seems like a simple thing but I can't seem to find a way to do it. It would be great to see a couple different methods. Thanks, Nick
6
votes
3answers
3k views

Is there a simple way of converting an ISO8601 timestamp to a formatted NSDate?

If I use the following code: NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init]; [dateFormatter setDateFormat:@"yyyy-MM-dd'T'HH:mm"]; NSDate *myDate = [dateFormatter ...
6
votes
7answers
13k views

get NSDate today, yesterday, this Week, last Week, this Month, last Month… variables

what i am trying to do is to get NSDate today, yesterday, this Week, last Week, this Month, last Month variables ready for comparison for headers to be added on UITableView's titleForHeaderInSection ...
6
votes
6answers
6k views

GMT time on iPhone

How do I get GMT time? NSDate *c =[NSDate date]; gives system time, not GMT.
6
votes
4answers
16k views

String description of NSDate

I have the following code: [ [NSDate date] descriptionWithLocale: @"yyyy-MM-dd" ] I want it to return a date in the following format: "2009-04-23" But it returns: Thursday, April 23, 2009 11:27:03 ...
6
votes
7answers
7k views

NSDateFormatter, am I doing something wrong or is this a bug?

I'm trying to print out the date in a certain format: NSDate *today = [[NSDate alloc] init]; NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init]; [dateFormatter ...
5
votes
5answers
4k views

Difference between two NSDate objects — Result also a NSDate

I have two NSDate objects and I want the difference between the two and the result should again be a NSDate object. Any idea how to achieve this? Here, I am trying to address a unique problem where I ...
5
votes
4answers
3k views

How can I calculate the difference between two dates?

How can I calculate the days between 1 Jan 2010 and (for example) 3 Feb 2010?
5
votes
3answers
199 views

Converting ex. 2010-09-11T00:00:00+01:00 format to NSDate

I have spent way too much time (over an hour) on what I though would be a two minute task. On the iPhone: NSString * dateString = @"2010-09-11T00:00:00+01:00"; NSDateFormatter * formatter = ...
5
votes
2answers
3k views

Using core plot for iPhone, drawing date on x axis

I have available an array of dictionary that contains NSDate and NSNumber values. I wanted to plot date on X axis. for plotting I need to supply xRanges to plot with some decimal values.I don't ...
5
votes
6answers
16k views

Data Formatters temporarily unavailable

Im trying to use Date Formatters (NSDateFormatter), but I keep getting this error: Program received signal: “EXC_BAD_ACCESS”. Data Formatters temporarily unavailable, will re-try after a 'continue'. ...
5
votes
3answers
2k views

How do you calculate the day of the year for a specific date in Objective C

This is something I found myself spending hours to figure out and therefor wants to share with you. So the question was, How do i determine the day of the year for a specific date? e.g. January ...
5
votes
2answers
3k views

NSTimer not firing when runloop is blocked

I am just about finished with my app and beta testing found a bug in the stopwatch portion... The stopwatch uses an nstimer to do the counting and has a table for storing laps, but when the lap table ...
5
votes
2answers
2k views

Parsing a RFC 822 date with NSDateFormatter

I'm using a NSDateFormatter to parse a RFC 822 date on the iPhone. However, there is no way to specify optional elements in the date format. There are a couple of optional parts in the RFC 822 ...
5
votes
2answers
2k views

Whither NSDate dateByAddingTimeInterval on iPhone OS?

Greetings! I must be seeing things. Look at this excerpt from the iPhone OS reference library: addTimeInterval: Returns a new NSDate object that is set to a given number of seconds relative to ...
5
votes
1answer
4k views

NSDateFormatter dateFromString will not parse a particular date string

Good day, i have an NSDateFormatter that doesn't seem to like a particular string that i am trying to convert. this particular instance is 2009-10-16T09:42:24.999605 All of my other dates are ...
5
votes
3answers
2k views

How can I generate convenient date ranges based on a given NSDate?

I'm creating a report generator in Cocoa, and I need to produce convenient date ranges such as "Today", "This Week", "This Month", "This Year", etc. Is there a good way to do this? Here is my ...
4
votes
2answers
30 views

How to skip time in NSDate?

I want to get difference between dates skipping time means if one date is 13 Jan 2012 - 11 pm and other date is 14 Jan 2012 - 12 am,then difference should be 1 day not 0 day.I mean I want difference ...
4
votes
2answers
124 views

NSDate : Add a day based on Time

In my app, I am getting a Date and start time of the same date and end time. The end time could be the time of very next day. example : Date : 11/01/2011 start time : 5:30 PM end ...
4
votes
2answers
130 views

Strange Problem

My app used [NSDate date ] function to get current date. Its work fine other days except 1st of every month during AM. i.e Follow Following steps : Set the system date as 01 - June - 2011 & ...
4
votes
4answers
850 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
5answers
475 views

NSDate Format outputting wrong date

I have a NSString (ex. "2011-04-12 19:23:39"), and what I did to format it to a NSDate was the following: [inputFormatter setDateFormat:@"yyyy-MM-dd HH:mm:ss"]; NSDate *date = [inputFormatter ...
4
votes
3answers
280 views

Set iPhone date/time within app for testing purposes?

I have a lot of functionality in my app that is date/time dependent (e.g. "if date is x, show y). I use [NSDate date] to get the current date/time of the user. I can test functionality by manually ...

1 2 3 4 5 20