Tagged Questions
NSDateComponents is an iOS class to deal with Components of Date.
21
votes
3answers
13k 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];
...
6
votes
2answers
254 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 ...
4
votes
5answers
3k views
iPhone - get number of days between two dates
I'm writing a GTD app for the iPhone. For the due tasks, I want to display something like "Due tomorrow" or "Due yesterday" or "Due July 18th". Obviously, I need to display "Tomorrow" even if the task ...
3
votes
1answer
55 views
What is NSEraCalendarUnit?
I was playing around with NSCalendar and NSDateComponents today and I saw constants like NSDayCalendarUnit and NSEraCalendarUnit. NSDayCalendarUnit returns 4 if today is the 4th of December for ...
3
votes
3answers
95 views
NSDateComponents is missing 1 second from difference of 2 dates
Got a really frustrating problem that doesn't seem to make any sense. I'm trying to get the number of years between 2 dates. Here is my code.
// Initialize variable to store calendar
NSCalendar ...
3
votes
3answers
255 views
Calculating the end of a month, or its last second
I have the simplest of tasks that I can't figure out how to do correctly. With the snippet below I can find out the beginning of a month.
NSCalendar *cal = [NSCalendar currentCalendar];
NSDate ...
3
votes
1answer
372 views
iPhone/Objective-C - Help with NSDateComponents and NSCalendar issues with overseas time zones
I use the below Utility method to display the seconds, minutes, hours, etc gone by.
e.g., 1 hour ago
I have a friend overseas testing our iPhone application and every time they submit an item the ...
3
votes
3answers
6k views
How to find what day of the week for any given date using Cocoa
I'm trying to figure out what day (i.e. Monday, Friday...) of any given date (i.e. Jun 27th, 2009)
Thank you.
2
votes
1answer
182 views
How to get number of current week in objective-c?
I develop an app that needs to get the current week. I tried this:
- (void)viewDidLoad
{
[super viewDidLoad];
NSString *dateString = @"1-1-2011";
NSDateFormatter *dateFormatter = ...
2
votes
1answer
169 views
Is the starting day of the week stored in NSLocale somewhere?
I live in the Netherlands. We Dutch people like to see Monday as the start of the week. I know that people in the US like to consider Sunday as the start of the week. Silly Americans ;)
If I want to ...
2
votes
2answers
100 views
finding NSDate's in an NSArray that have a time of day after a given time (e.g. 8pm)?
Is there a quick way in Objective-C of identifying NSDate's in an NSArray that have a time of day after a given time (e.g. 8pm)?
I can't quite see anyway other than manually walking through each ...
2
votes
3answers
1k views
NSDateComponents components:fromDate and Time Zones
I have a method which extracts the hour and second components form a NSDate by breaking it down into its NSDateComponents. My code is as follows...
unsigned hourAndMinuteFlags = NSHourCalendarUnit | ...
2
votes
2answers
1k views
Getting first and last days of current week
How can I get first and last days of the current week? What I need is some way of filtering a set of objects with NSDate property to leave only ones, that appear on current week, and then filter them ...
1
vote
1answer
35 views
iPhone SDK - system for fetching xml based on date
Hi i am developing an application for my college. So far the user can check their schedule. I do that by parsing some xml via a url. Looks like this: http://test.com/test/action=schedule
The next ...
1
vote
1answer
20 views
Crash in NSDateComponents weekOfYear
I'm trying to get the number of the week of the year out of an NSDate with this code:
int which = NSYearCalendarUnit | NSMonthCalendarUnit | NSHourCalendarUnit | NSMinuteCalendarUnit | ...
1
vote
3answers
39 views
Producing an NSDate with fixed time
I am trying to produce an NSDate with fixed hour and minutes. I need this to make an equal comparison with other date stored in CoreData.
So far I wrote this code:
NSDate date = [NSDate date];
...
1
vote
1answer
42 views
NSCalendar and NSDate incompatibilty
I am trying to access just the hours and minutes information from a NSDate.
So I used NSCalendar to do that. Below is my code:
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
...
1
vote
1answer
84 views
Set the first of the month of a NSDate
I'm using a NSDate that is incremented/decremented thanks to NSDateCompoments:
dateComponents = [[NSDateComponents alloc] init];
self.date = [gregorian dateByAddingComponents:dateComponents ...
1
vote
3answers
80 views
How to find what day of the week for any given date using Cocoa?
I know this is a repetitive query, but I am stuck up with this issue.
I need to know how can I get the day like Mon,Tues for a particular date eg: 18 July, 2010 etc.
appreciate your help!!
1
vote
1answer
49 views
Problem in getting time
HI i need to increment 15 minutes in time intrval which i get in the webservice .
The code is as follows
NSString *dateString =obj.String_date_start; // start time is 2011-07-01
...
1
vote
1answer
219 views
NSDate from NSDateComponents
I am trying to alter the hh, mm, ss component of an NSDate to that of another NSDate - but for some reason, the time gets set to midnight for some reason. I can't figure out why!
Here is the code;
+ ...
1
vote
3answers
303 views
iPhone: method to calculate days till next birthday not accurate --?
Here's a puzzler. I use the following to calculate the number of days between today's date and an upcoming birthday:
-(int) daysTillBirthday: (NSDate*)aDate {
// check to see if valid date was ...
1
vote
7answers
434 views
format a NSDate to DDMMYYYY?
I have to send a DDMMYYY date from a Date to communicate with an API.
NSDateComponents *dateComponents;
NSCalendar *gregorian;
NSDate *date;
gregorian = [[NSCalendar alloc] ...
1
vote
2answers
257 views
IOS: problem with NSDate
I have this code:
NSDateComponents *components = [[[NSDateComponents alloc] init] autorelease];
[components setYear:2011];
[components setDay:1];
[components setMonth:4];
NSCalendar ...
1
vote
2answers
646 views
NSDate, NSCalendar and NSDateComponents taiming
NSDate *today = [NSDate date];
NSCalendar *calendar = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];
[calendar setTimeZone:[NSTimeZone timeZoneWithName:@"GMT+2"]];
...
1
vote
1answer
110 views
NSCalendar components not taking time into account
We know that NSDate is UTC/GMT. In order words, no time zone info is associated with it.
There are high level classes such as NSCalendar and NSTimeZone and NSDateComponents which do take timezone ...
1
vote
1answer
65 views
how can I improve this “DateFromNextWeekDay:FromDate” method code?
Would be happy to hear of suggestions re how to improve / shorten this method. In short needing to:
Find the next date for which it's day of week (e.g. Wed) matches what is passed into the method. ...
1
vote
1answer
573 views
how do I set an existing NSDate's time?
how do I set an existing NSDate's time?
That is I have a date (say current date/time), but then want to set this to a specific time (e.g. 11.23am) say. What is the quickest way to do this in ...
1
vote
2answers
377 views
Getting first day of a week with NSDateComponents : problem when changing year
Hello
I have a problem with setting a firstWeekDay, here is what I do:
NSCalendar *gregorian = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];
comp = [gregorian ...
1
vote
2answers
162 views
Date since 1600 to NSDate?
I have a date that's stored as a number of days since January 1, 1600 that I need to deal with. This is a legacy date format that I need to read many, many times in my application.
Previously, I'd ...
1
vote
2answers
1k views
NSDate substract one month
I want two NSInteger year, month to go one month back. e.g. now is 2011-01 how can i get 2010-12. adding is one thing, but i want to substract. hope someone could help me a bit out here.
NSDate *date ...
1
vote
1answer
859 views
Why NSCalendar's dateFromComponents returns wrong date?
I am expecting 2010-10-11 00:00:00
But instead I receive 2010-10-10 21:00:00 +0000
I know, that I can add a few hours and receive desired date, but I do not understand why I get previous day with 21 ...
1
vote
1answer
189 views
NSDateComponents giving odd results
I'm creating a weekly calendar view, and part of that is calculating the first day of the displayed week. I also want the saved date to have the time of the very first second, so I'm trying to ensure ...
1
vote
1answer
595 views
NSDateComponents setWeek - Find this week
Is it possible to find the current week of the year using NSDateComponents and setWeek: ? As setWeek uses a number form 1 - 52 every week in the year, how can I find the number representing this week?
...
1
vote
2answers
281 views
How to create a custom date on iPhone
I'm trying to set some components of todays date with NSDateComponent like so:
NSDateComponents *comps = [[NSDateComponents alloc] init];
[comps setDay:1];
[comps setHour:1];
[comps ...
1
vote
2answers
684 views
iPhone NSDateComponent wrong Date 1.1.2011?
I set a Date with 'DateFromComponents" and when I read it out... its wrong.
I have to set the DAY to the 2nd or anything later so I get the right Year?!?
I set year 2011 and when I read it out i get ...
1
vote
1answer
204 views
How to create a specific date in the distant past, the BC era
I’m trying to create a date in the BC era, but failing pretty hard. The following returns ‘4713’ as the year, instead of ‘-4712’:
NSCalendar *calendar = [[NSCalendar alloc] ...
0
votes
0answers
40 views
Getting first date in week given a year and weeknumber
I'm trying to get the first date in a week giving a year and weeknumber in objective-c.
I want to take the dutch calendar into account. Monday is the first day in the week here.
So just as it is in MS ...
0
votes
1answer
80 views
NSDateComponents behaving strange in the first week of 2012
In my iOS app I have to create a week based on the current date.
This is the piece of code:
NSDateComponents *components = [[NSDateComponents alloc] init];
[components setYear:year];
[components ...
0
votes
1answer
30 views
Complete newbie struggling to store a date for later use
Hi I'm very new to iOS programming and am playing around with dates (todays date and a date 1 year from now).
Here's the code i'm dabbling with.
NSCalendar * calendar = [NSCalendar ...
0
votes
1answer
32 views
How can I format two NSDate as a time difference string (e.g. 2days ago) and make it follow the regional formatting of the device?
Does the standard framework support time difference formatting and create a format that follows the regional settings? I know I can break it to NSDateComponents but then I will have to append the text ...
0
votes
1answer
78 views
Wrong week from date component on IOS5
My region format is US, and I'm getting different week numbers from the ones I get on Mac OSx which is also in US.
I'm using iOS 5 and have not programmed on iOS before this sdk version. So I just ...
0
votes
1answer
43 views
NSCalendar and NSDateComponents returning unexpected date
I'm trying to create an NSDate from NSCalendar and NSDateComponents with:
NSCalendar *calendar = [NSCalendar currentCalendar];
[calendar setTimeZone:[NSTimeZone localTimeZone]];
...
0
votes
1answer
58 views
Tomorrow in NSDateComponents isolate day
I'm trying to retrieve tomorrows date based on the current date. I get the correct string, but how do I isolate the day?
NSDateComponents *comps = [[NSDateComponents alloc] init];
[comps setDay:1];
...
0
votes
1answer
115 views
Creating NSDate from NSDateComponents off by one day
I'm trying to set a particular date for a unit test:
NSCalendar *calendar = [[NSCalendar alloc]
initWithCalendarIdentifier:NSGregorianCalendar];
NSDateComponents *components ...
0
votes
1answer
32 views
Storing hours/minutes in a way I can use with NSDate
I'm working on an app that is powered by a back-end API web service. There is an entity being used that has a few properties (such as name etc.) and it also has a time. The time is fixed in the sense ...
0
votes
3answers
91 views
Getting more accurate time measurement
Currently I'm recording the time between two events in decimal minutes using :
NSCalendar *calendar = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];
NSCalendarUnit unitFlags = ...
0
votes
1answer
70 views
Correct use of NSDateComponents
I've been following the apple docs as well as some code on here and I can't seem to get NSDateComponents to work correctly.
NSCalendar* calendar = [[NSCalendar alloc] ...
0
votes
1answer
195 views
NSCalendar dateFromComponents returns wrong date
I'm writing a Category on NSDate to create an NSDate from an ISO 8601 string representation (YYYYMMDD).
Even though I pass 20010226, I get back 2001-02-25 23:00:00 +0000. what am I doing wrong?
This ...
0
votes
2answers
167 views
NSDateComponents of an NSDate
How do I get the NSDateComponents of a single NSDate? I don't want the components of the difference between 2 dates, just the seconds, minutes, hours, day, month and year of a NSDate?