NSDateComponents is a class in Apple's Cocoa and CocoaTouch frameworks which represents either a date or a period of time as composed of several elements -- days, hours, and months, for example.
0
votes
3answers
58 views
NSDate of the week
I an using the current methods to get the first and the last day of the current week:
NSDate *weekDate = [NSDate date];
NSCalendar *myCalendar = [[NSCalendar alloc] ...
0
votes
2answers
46 views
NSDateComponents comparison
I would like to compare to NSDates but only with regard to hour and minute. The first date is given from an array, the second one is the current. I didn't arrive with this method:
NSDateComponents ...
0
votes
3answers
52 views
Convert from just the hours:minutes:timezone to a complete date in another TimeZone
I am retrieving some dates from a remote server. Unfortunately one of the possible formats is just h:mm:a
Example of data I downloaded yesterday May, 21, 2013:
1) 04:36PM EDT
2) 11:51PM EDT
The ...
0
votes
2answers
69 views
NSDate wrong output when add day to NSDate
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setDateFormat:@"yyyy-MM-dd"];
NSString *dateString = [dateFormatter stringFromDate:[NSDate date]];
...
1
vote
2answers
42 views
List the previous six months [duplicate]
I am looking for a way to get a list of the last six months from today.
Today is in May so I would be looking for an output of:
May 2013,
Apr 2013,
Mar 2013,
Feb 2013,
Jan 2013,
Dec 2012
I ...
0
votes
1answer
11 views
Local push notification last day of month
I want to send local push notification last day of every month 12.00.
I want someone to check if this is the right code since I don't wanna wait a month to see if it works? Thnx!
NSDate ...
0
votes
3answers
68 views
Wrong date comes back from NSDateComponents
Why is this giving me the wrong date ?
NSCalendar *myCalendar = [[NSCalendar alloc] initWithCalendarIdentifier: NSGregorianCalendar];
NSDateComponents* components = [myCalendar ...
0
votes
1answer
31 views
Trying to get Weekday using NSDateComponents but weekday always the same
I'm trying to obtain the day of the week using the code below with a variable NSString. Whatever value I use the weekday always comes back as 2. What am I doing wrong?
NSDateFormatter *dateFormatter ...
0
votes
3answers
49 views
Trying to use NSDate for time only
I'm struggling to find a way to use NSDate for time only purposes.
I was trying to do the following code:
- (void)awakeFromInsert
{
NSDateComponents *comps = [[NSDateComponents alloc] init];
...
0
votes
1answer
48 views
NSCalendarUnit – modifying unitFlags
In my app I want to let user set display style of a date. I've considered to just modify unitFlags to achieve that. I mean this
NSUInteger unitFlags = NSYearCalendarUnit | NSMonthCalendarUnit | ...
0
votes
2answers
50 views
NSDate convert NSDateComponents issue
The results of destinationDate and components differ.
how do i solve this problem?
NSTimeZone* sourceTimeZone = [NSTimeZone timeZoneWithAbbreviation:@"GMT"];
NSTimeZone* destinationTimeZone = ...
0
votes
1answer
31 views
How do I disable time Period on UIDatePicker?
I am working on an app that involves gathering components of 2 UIDatePickers, one for time and one for the date. I would love to if possible remove the Period column (AM/PM) from the time picker. If ...
0
votes
0answers
38 views
Show local notification on particular days [duplicate]
Today's date is 2013-04-17 10:39:00 +0000. Now i am selecting weekdays from table to set schedule(alarm) of that day. I want to show local notification alert on selected days forever. But i am ...
1
vote
1answer
49 views
Last weekday of the month with NSDateComponents
NSDateComponents and NSCalendar have a feature to get the n'th weekday of the month with the NSWeekdayOrdinalCalendarUnit using NSCalendarUnit.
For example the 2nd monday of the month.
It's awesome ...
-1
votes
3answers
92 views
Issues in NSdate (Time Zone) date Time displays 5hrs 30 mins past time
Actually in my simulater TIME displays past 5 hrs 30 mins
My current time in india is 2013-04-02 09:10:__ AM But the output is 2013-04-02 03:54:51 +0000
2013- April - 2nd : 9:10 AM
I need to get ...
0
votes
0answers
22 views
Use NSDateComponents to Calculate date of next month /nth week ordinal / nth weekday from today
I am trying to calculate a date from today's date. The date that I want is next month , nth week ordinal and nth weekday from today. I am using the code below to do it. The results of code below is ...
0
votes
0answers
37 views
creating a weekmode calendar in iOS
I am working with a week mode calendar, I know the prerequisites for it.. which are as below
1) get current date.
2) based on currentdate, get first and last date of current week
3) get first and last ...
0
votes
2answers
67 views
NSDateComponents from NSDate yielding unexpected results
I have an NS date stored that is logged as
2013-03-15 00:00:01 +0000
I presume that the +0000 is UTC time. However, when I try
NSCalendar* theCalendar = [NSCalendar currentCalendar];
unsigned ...
0
votes
1answer
75 views
calculating number of days, nsdate, ios [duplicate]
The way I am calculating the difference between of 2 dates is
NSCalendar *calendar = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];
NSDateComponents *nowAndEnd ...
2
votes
1answer
41 views
sethours in NSDateComponents
I'm trying to sethours in NSDateComponents, I wrote the following code
NSCalendar *calendar = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];
NSDateComponents *dateComps = ...
0
votes
0answers
103 views
UILocalNotification every Saturday at 12:00 am
I try to repeat UILocalNotification every Saturday but I didn't succeed.
I try the following:
// Create notification for every saturday at 12:00 am
NSCalendar *gregorian = [[NSCalendar alloc] ...
0
votes
3answers
91 views
Issue with NSDate from NSDateComponents
i have a string like 2013-03-05T07:37:26.853 and i want to get the Output : 2013-03-05 07:37:26. I want the final output in NSDate object. i am using below function to convert desire output. and it ...
0
votes
1answer
90 views
How to create a date object for tomorrow at 8am
I am normally pretty good with this, but I am having trouble with the NSDate object. I need a NSDate object set for tomorrow at 8am (relatively). How would I do this and what is the simplest method?
3
votes
2answers
148 views
NSCalendar dateFromComponents returns wrong date by 2
I want to find out the date of the first week of a mouth in a year:
NSCalendar *calendar = [NSCalendar currentCalendar];
NSDateComponents *components = [[NSDateComponents alloc] init];
[components ...
2
votes
3answers
238 views
How to get first day in a month?
I have this subset of a method that needs to get day one of current month.
NSDate *today = [NSDate date]; // returns correctly 28 february 2013
NSCalendar *gregorian = [[NSCalendar alloc] ...
1
vote
2answers
67 views
Generating 1st of months of 20th century - Objective-C
I'm creating a bunch of code to determinate every 1st of each month from 1/1/1901 to 31/12/2000 using Objective-C. I want to get this output :
1/1/1901
1/2/1901
1/3/1901
.
.
.
1/11/2000
1/12/2000
...
1
vote
1answer
44 views
NSDate & NSFormatter issues in Amman, Jordan
My device timezone is set to Amman, Jordan. This code:
NSDateFormatter *dateFormatter = [[[NSDateFormatter alloc] init] autorelease];
[dateFormatter setDateFormat:@"yyyyMMdd"];
NSDate *date = ...
0
votes
3answers
54 views
how to trigger a download on specific date
In my iPhone application I want to trigger a download every monday of a week, every 10th working day of a month, every 3rd day of a month etc. I did some R & D and found that NSDate, ...
0
votes
3answers
67 views
NSDateFormatter returns nil for specific date only in certain time zones
Given this code:
NSDateFormatter *dateFormatter = [[[NSDateFormatter alloc] init] autorelease];
[dateFormatter setDateFormat:@"yyyyMMdd"];
NSArray *datesArray = @[@"20130326", @"20130327", ...
-3
votes
1answer
272 views
How to get first date of MONTH, and first date of YEAR for a incoming date. in iPhone Objective c [duplicate]
Possible Duplicate:
How to get all the days/dates in current week, this month, this year using the current date (today) in iPhone
I need to get the first day of Month, first day of Year ...
0
votes
1answer
106 views
Is the iOS Do Not Disturb Bug Causing this Bug?
I am trying to find out if the recent Do Not Disturb bug (Ars Technica link) is affecting my code. I am trying to get the date and timestamp for midnight the previous Monday. Since I am writing this ...
0
votes
3answers
67 views
Getting all NSDates from now unwanted behavior
I want to get all NSDate from to to 30 days later. However it doesn't work correctly.
Here is the code i am using:
for (int i = 0; i < days; i++) {
NSDate *today = [self getToday];
...
0
votes
2answers
174 views
Determine NSDate for Memorial Day in a given year
Is there a better way to determine the NSDate for Memorial Day (the last Monday in May) in a given year?
NSInteger aGivenYear = 2013 ;
NSCalendar* calendar = [NSCalendar currentCalendar] ;
...
1
vote
2answers
351 views
How can I get an NSDate for the first day of the next week of the month
Given an arbitrary date, I need to find the date of the first day of the next week of the month. Note that it is not as simple as adding 7 days to the current date because the last week of the month ...
0
votes
0answers
57 views
dateByAddingComponents throws an error
After having spent almost the night on this, I can't find the solution, and I would appreciate some help.
(IBAction)changeTrigerTimePicker:(id)sender { // when we press button
NSCalendar *gregorian ...
0
votes
2answers
76 views
Objective C: Incorrect Output while using NSDates
I am trying to get the start and end dates of the current month. There are a few similar questions here, but I am getting unexpected results while using them. Here's what I did:
NSDate ...
1
vote
2answers
165 views
NSCalendar components:fromDate:toDate:options] always returns 0 diff
I have read some threads on how to calc diff between 2 dates in iOS, here is an example which also seems to be provided by Apple docs, and I use it to decide if 2 dates are the same (ignoring the ...
5
votes
2answers
150 views
NSDateComponents week component of this last week of the year
how many weeks there are in a year? because i have searched on the web and i found there is in total 52.1 week in a year, but if i do this in Xcode:
NSCalendar *gregorian = [[NSCalendar alloc]
...
0
votes
2answers
105 views
Cancel all notifications at specific time
For my App I don't want notifications to go off in the weekends.
So my idea was to cancel all the notifications at a specific time on Fridays, I would like to do this by scheduling the task, just like ...
0
votes
2answers
93 views
What is the best way to increment NSDateComponents in specific intervals in Objective-C?
I need to fetch objects from core data within specific time periods; i.e. weekly, monthly, yearly.
I would then feed the dates generated from the components into a predicate like this:
[NSPredicate ...
0
votes
1answer
109 views
Date difference: currentCalendar vs. gregorianCalendar
NSDateComponents *components;
components = [[NSCalendar currentCalendar] components: NSDayCalendarUnit
fromDate: startDate
...
-1
votes
3answers
172 views
NSdateFormatter in iphone sdk
I am beginner in ios development.
I am stuck in NSdateFormatter class.
My question is:
Which kind of formatter support on this date "Oct, 25th"?
Please help me,
Thanks in advance...
3
votes
1answer
116 views
Setting NSDateComponents results in incorrect NSDate
I'm trying to get an NSDate object that has 21:00 as the local time - don't care about what day. I'm scratching my head at this very strange result:
NSCalendar *calendar = [[NSCalendar ...
0
votes
1answer
53 views
NSDateComponents don't change hour component correctly
i can't understand why i can't change the hour of a NSDate correctly, using NSDateComponents, i'll do it in this way:
NSDateComponent components = [calendar components: (NSYearCalendarUnit | ...
0
votes
1answer
71 views
components:NSQuarterCalendarUnit gives the total quarters between 2 dates?
NSDateComponents *result = [[NSCalendar currentCalendar] components:NSQuarterCalendarUnit fromDate:start toDate:end options:0];
NSInteger numberOfQuaters = [result quarter];
why this ...
0
votes
2answers
101 views
How many quarters between two dates?
NSCalendar *calendar= [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];
NSCalendarUnit unitFlags = NSYearCalendarUnit | NSMonthCalendarUnit | NSDayCalendarUnit;
NSDateComponents ...
1
vote
1answer
129 views
Formatting the month and year in iOS
I want to display only the current month and year in my iPad app, as, 'November, 2012', for which I'm currently formatting the month to 'MMMM' and year to 'yyyy' and concatenating them. This works ...
0
votes
1answer
62 views
How to store NSDate plus 7 calendar days?
I need to be able to store the current NS Date plus 7 days. I already store the current NSDate. I then want to compare the two dates, to get the number of days difference between the two and display ...
0
votes
2answers
252 views
How do I implement previous/next month buttons and show dates for current month?
Scenario:
I have an expense tracking iOS Application and I am storing expenses from a expense detail view controller into a table view (with fetched results controller) that shows the list of ...
5
votes
2answers
627 views
NSDate beginning of day and end of day
-(NSDate *)begginingOfDay:(NSDate *)date
{
NSCalendar *cal = [NSCalendar currentCalendar];
NSDateComponents *components = [cal components:( NSMonthCalendarUnit | NSYearCalendarUnit | ...


