Tagged Questions

The tag has no wiki summary.

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]; ...
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
4
votes
1answer
2k views

NSDate for first day of the month

This is quite a simple concept, but as of yet I have been unable to find an elegant (and calendar locale independent) solution. I need to find the first day of the month for an arbitrary NSDate. For ...
4
votes
1answer
1k views

NSCalendar: Problem getting weeks in a month

I am creating a calendar control of sorts... One thing I need to know is how many weeks are there in a Month... So NSCalendar rangeOfUnit:inUnit:forDate Seems to be exactly what I need... Except I ...
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
1answer
71 views

Do I understand NSHebrewCalendar correctly?

I conducted a quick test with the Cocoa Touch to see how NSHebrewCalendar works. I'm particularly interested in the month numbers. I used a date picker to easily change dates, and I passed it in to a ...
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
2answers
134 views

How to check if a particular date exists?

how can I check if a particular date exists?. For example, if I do the following: NSDateComponents *dateComponents = [[NSDateComponents alloc] init]; [dateComponents setYear:2011]; [dateComponents ...
3
votes
3answers
563 views

iPhone NSDate eg. next Friday

I want to create a function which results the date of next Friday but i've no plan how to do it. Has anyone a good hint to me ? Greets Simon
3
votes
2answers
3k views

Working with NSCalendar — getting the next first tuesday of a month

This is a bit odd, but is it possible to use an NSCalendar (or any component, for that matter) to figure out what the date of the next "first tuesday of the month" would be? For example, today is ...
3
votes
10answers
8k views

NSCalendar first day of week

Does anyone know if there is a way to set the first day of the week on a NSCalendar, or is there a calendar that already has Monday as the first day of the week, instead of Sunday. I'm currently ...
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
2answers
98 views

Leak? dateFromComponents surely returns autoreleased object, no?

-(NSDate *)dateFromDate:(NSDate *)inDate withNewTime:(NSDateComponents *)inTimeComponents { NSCalendarUnit unitFlags = NSYearCalendarUnit | NSMonthCalendarUnit | NSDayCalendarUnit; NSDateComponents ...
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
1answer
302 views

Retrieving 1st day of month using NSCalendar

I execute following snippet of code: NSCalendar *gregorian = [[NSCalendar alloc]initWithCalendarIdentifier:NSGregorianCalendar]; NSDateComponents *comp = [gregorian components:(NSYearCalendarUnit | ...
2
votes
1answer
369 views

Example for when to use [NSCalendar autoupdatingCurrentCalendar]

I'm looking for an example where + autoupdatingCurrentCalendar would be used instead of + currentCalendar. More specifically where the values based on the calendar are automatically changed when the ...
2
votes
1answer
321 views

How to programmatically build NSArray of localized calendar month names?

I am in the process of localizing/internationalizing my iPhone app and have a question. In one place in my app, I show a list of the 12 months of the year. As it is in its currently non-localized ...
2
votes
3answers
288 views

NSCalendar problem with BC era

Greetings, Recently I faced a big problem (as it seems to me) with NSCalendar class. In my task I need to work with a large time periods starting from 4000BC to 2000AD (Gregorian calendar). In some ...
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
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
0answers
85 views

Why my calculated TimeStamp is not exact (+32 or +16 seconds )?

I can't understand the result of my code, I need your help. For exemple, if current time is 5H00 AM, i want to get two timestamp when I call my method : [self getPeriodValues:@"day"]; The ...
1
vote
1answer
61 views

Should I retain NSCalendar object for a persistent use?

In a Calendar-like app, or part of an app, I need to use (gregorian) calendar in many routines, which means I need to alloc-init and release the same NSCalendar object for many times. Shall I retain ...
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
130 views

How to get calendar events by date?

I am inserting data in my device calendar by this code. i want those events by date. if i pass date and i want to get event name. thanks in advance.
1
vote
2answers
220 views

NSDateComponents returns week 53 on 1/1/1970

So when extracting the dates components from NSDate object using NSCalendar and NSDateComponents I encountered a weird behavior. If the date is 0 sec from 1970 the week component will return 53. Is ...
1
vote
1answer
466 views

how to create local notifications in iphone app

I would like to know how I ( as a developer) can setup local notifications so that at the time I set, my app generates a notification/alert with a customized message...
1
vote
7answers
436 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
3answers
174 views

Is my Contact's birthday in next 10 days

I am trying to calculate whether any of my Address Book's contacts have a birthday in the next 10 days. There's plenty of code on line to compare dates, but I only want to compare day and month. For ...
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
175 views

NSCalendar dateWithComponents Giving Wrong Date

I have to elaborate a date with dateComponents: int year; int month; int day; int hour; int minute; int second; NSCalendar *calendar; NSDate *actualDate; NSDate *itemDate; NSDateComponents ...
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
575 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
219 views

How to check if NSDate chosen by user occured some years ago?

In my application I need to check if user turned 18. I provide UIDatePickerView for him and he selects his birthday date. I store it in the NSDate field. How to check if 18 years has passed already ...
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
1answer
863 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
267 views

Does -[NSCalendar ordinalityOfUnit:inUnit:forDate:] not work?

I have the following code in my program: NSUInteger currentMinuteOrdinal = [[NSCalendar currentCalendar] ordinalityOfUnit:NSMinuteCalendarUnit inUnit:NSEraCalendarUnit forDate:[NSDate date]]; ...
1
vote
4answers
385 views

Is it possible to create an own calendar system in cocoa touch / UIKit?

There are some constants for NSLocale, like NSJapaneseCalendar, but what if I wanted to create a "Physical Calendar" or something that isn't there? Is there a way to define an arbitrary calendar ...
1
vote
1answer
708 views

Creating a new NSCalendar calendar

I want to be able to convert between the Gregorian and Julian calendars (note: not "julian date") using NSCalendar on the iPhone. How can I subclass NSCalendar to use the Julian calendar? I want to do ...
0
votes
2answers
60 views

Get only weekends between two dates

I'm trying get only the Saturdays and Sundays between two dates, but I don't know why get me free days on a week. Here is my code: - (BOOL)checkForWeekend:(NSDate *)aDate { BOOL isWeekendDate = ...
0
votes
1answer
11 views

How do add days to a date in ObjC?

I want to find the future date after adding a number of days to another date. So if I have this: NSDateComponents *pastDate = [[NSDateComponents alloc] init]; [pastDate setMonth:12]; ...
0
votes
0answers
41 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
81 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
46 views

How can I go to the next week using nscalendar & nsdate when an button is pressed?

When my tableview loads it grabs data from a mysql database based on the current week we are in. This all works fine but I also want the user to be able to click a UIButton that loads data for the ...
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
34 views

Working with time not giving proper result iphone?

I want maximum time from end time and current time. I tried this but not giving proper result. NSString *strFreq = @"2"; NSString *strET = @"5:20 PM" NSDate *today = [NSDate date]; ...
0
votes
1answer
77 views

Fetching Date of upcoming specified days

I want to schedule UILocal Notifications and want them to be repeated on particular days specified by the user.The user specifies a particular date and then specifies the days on which he wants to ...
0
votes
2answers
234 views

NSCalendar dateFromComponents: GMT timezone instead of systemTimeZone

This code NSCalendar *calendar =[NSCalendar currentCalendar]; [gregorian setTimeZone:tz]; NSLog(@"%@", [gregorian timeZone]); NSDateComponents *comp = [gregorian components:(NSYearCalendarUnit | ...

1 2