NSCalendar is an Apple MacOS and iOS class to deal with calendrical computation.

learn more… | top users | synonyms

0
votes
1answer
39 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
1answer
9 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 ...
1
vote
1answer
43 views

NSCalendar firstWeekday depending on location issue

Is it possible to get firstWeekday depending on location. For instance, in USA it should say Sunday. In Russia it should say Monday. Edit: [[NSCalendar currentCalendar] firstWeekday] always says 1, ...
0
votes
1answer
25 views

xcode NSCalendarUnit shows 3 month ahead

I am trying to calculate number of days in current month today = [NSDate date]; NSLog(@"%@", today); //calculate how much days in current month NSCalendar *cal = [[NSCalendar ...
-1
votes
1answer
31 views

Convert current date calendar to another one on iphone?

How can i convert current date calendar to special date calendar, for example i want to convert current date so that my local calendar is Japanese to Gregorian calendar date and this date should ...
0
votes
1answer
47 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
0answers
52 views

Add labels on calendar view

I am working on a project in which I have integrated full screen calendar view for iPad. The ios_calendar view which is available on cocoa controls here. Now, what I want is to add labels on ...
0
votes
2answers
51 views

Sending NSCFCalendar nil NSDate Sarcastic Error [closed]

A few threads here discuss the new iOS 6 Xcode error that pops up in the console when sending nil dates to Calendar methods: -[__NSCFCalendar components:fromDate:toDate:options:]: fromDate cannot be ...
0
votes
1answer
37 views

Objective-c Check if calendar exists

I searched a lot and even if this question seems simple seems there is no clear answers. How do I retrieve a calendar programmatically? I need to save one and avoid to create it if it already has been ...
0
votes
1answer
192 views

Test different calendars on iOS

I have an app that relies heavily on date calculations. I am using NSCalendar and doing all the calculations "the right way", but I don't really have any way to test any other calendar besides the ...
0
votes
1answer
62 views

Day of Year with iOS [duplicate]

I need to know day of year with iOS sdk. I can do that manually, but wanted to know that is there any method to find day of year? I am not meaning that - How many days in a year. I need to know the ...
2
votes
1answer
75 views

How to set Alarm Every Monday, Tuesday, Wednesday

i want set alarm every day please help me i am so confused about it from many days. i am using this code -(void)localNotificationWithData:(NSDate *)firDate timeinterval:(int)interval{ NSCalendar ...
0
votes
0answers
52 views

Looping using a for loop logic - Year

I'm working on an iOS application. One of the function loops for the whole year from the current date and time. for (int month_i = monthInt; month_i < 13; month_i++) { for (int i = dayInt ...
0
votes
1answer
86 views

How to determine first week day in iOS?

I am using Tapku's calendar in my application and I want to determine if the week should start on a Sunday or a Monday depending on the user's settings. I am calling firstWeekday, but for some reason ...
0
votes
2answers
97 views

Fire UILocalNotification in a specific Date

I want to fire a UILocalNotification in a specific Date. If I use this code: NSCalendar *gregorian = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar]; NSDateComponents *components ...
0
votes
0answers
36 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
3answers
50 views

Get the future time as NSDate

I have a date picker. After choosing a time from this I would like to get the dates and time of next 30 min and 1 hour. How would I go about writing a method to take a date and time and return as two ...
0
votes
0answers
30 views

How can we set repeatinterval for UIlocalNotifications biweekly (twice in a month)? [duplicate]

How can we set repeatinterval for UIlocalNotifications biweekly (twice in a month)? UILocalNotification *local = [[UILocalNotification alloc]init]; local.repeatInterval = NSWeekdayCalendarUnit; I ...
0
votes
1answer
22 views

How to add calender to our project,when click on some purspose date like festivals we show image relative to that festival,purpose of that date?

I'm doing a project,in that I want to implement calendar, in calendar when particular date has holiday(or) special(or) festival when we click on that date then in next view we want to show that date, ...
0
votes
2answers
63 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
0answers
23 views

Make consistent number of rows in the KalCalendar for each month

I'm working on Kal Calendar to integrate Calendar in my Project. I'm sucessfully able to do that. I have downloaded the code from here: https://github.com/klazuka/Kal But the problem I'm facing is, ...
-1
votes
1answer
51 views

iOS: Populate table using NSCalendar (and Core Data) [closed]

This is a twofer, so apologies in advance. Anyways... I'm working on a calendar app, with the app containing a view with seven days of the current week, and arrows above it that navigate to previous ...
2
votes
3answers
225 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
1answer
63 views

Using NSDateComponents/NSCalendar to decipher weeks of a month

I've been playing around with NSDates and need to compare if two dates are in the same week. So far I've managed to use the [NSDateComponents week] to check if they are WITHIN a week of each other. ...
1
vote
1answer
95 views

Selecting date in celander is giving me previous date using Vurig-Calendar Library in iOS

I have downloaded this library https://github.com/TjeerdVurig/Vurig-Calendar. Now the problem which I'm facing, for example if I select 25th feb 2013 it is printing 24th Feb 2013. I Can't find ...
0
votes
0answers
16 views

Using objective C to import calendar events in mySQL

I'm trying to load a calendar data (like loading it fully with year month date) in MySQL using objective C. I have come across PHP version of uploading events into MySQL. Is there a way to use ...
8
votes
4answers
197 views

Objective-C: Getting the number of days in a calendar year

I am using the following NSCalendar method to get the number of days in a calendar year: NSRange range = [gregorian rangeOfUnit:NSDayCalendarUnit ...
0
votes
2answers
80 views

List days in calendar year

I am wanting to list (NSLog) all the dates of the Georgian calendar year (2013). I have managed to get the current date using the following: NSCalendar* calendar = [[NSCalendar alloc] ...
5
votes
2answers
166 views

iOS create date in the future ignoring daylight savings

I'm trying to work with dates and create dates in the future, but daylight savings keeps getting in the way and messing up my times. Here is my code to move to midnight of the first day of the next ...
2
votes
2answers
117 views

same day of last month ios

Is there any way using NSCalender you can get same day of last month? I am using a calender which shows user 1 month like the iPad calender when they click on the button I want to move to previous ...
1
vote
1answer
43 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
53 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, ...
-3
votes
2answers
88 views

Current day in year [duplicate]

Possible Duplicate: How do you calculate the day of the year for a specific date in Objective C I am looking for a way to find the day number which has past in current year. For example if ...
1
vote
1answer
86 views

Missing Month Name between two dates

I am using this code int unitFlags = NSMonthCalendarUnit; NSDateComponents *comps = [gregorian components:unitFlags fromDate:startDate toDate:endDate options:0]; int months = [comps month]; ...
-3
votes
1answer
267 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 ...
-1
votes
1answer
113 views

NSDate / NSCalender count days in year

I am making an app that calculates salaries based on the years somebody is working for a firm. The user enter 2 dates, the first one is the day he started working (let's say 1/12/2010) and the second ...
2
votes
2answers
151 views

NSCalendar date error

I'm trying to use NSCalendar with NSIslamicCalendar identifier. But the day result is not good, her's my code: NSCalendar *calandar = [[NSCalendar alloc]initWithCalendarIdentifier:NSIslamicCalendar]; ...
0
votes
1answer
67 views

NSDateFormater, diferent results on iPhone and iPhone simulator

When I run this code on iPhone simulator result is 1 (sundey 30. dec, 2012) but when run on iPhone result is 7. Why? NSCalendar *gregorijan = [[NSCalendar alloc] ...
1
vote
2answers
348 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
56 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
163 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 ...
0
votes
0answers
37 views

Calendar for multiple resources

I want to create the calendar in native using NSCalendar class or any other option in which i can display multiple resources for a single date Example scenario is i have a three teacher in my app and ...
0
votes
1answer
57 views

NSCalendar class to find the Date of a Weekday

I m creating an calendar based application for that i have used the NSCalendar class now i want to get the Date of a perticular weekday means if todays date is 8th dec 2012 and i pass the weekday 2 ...
0
votes
1answer
108 views

how to add a new calendar view in IOS 6 programetically

Iam doing one project and iam new to iphone technology.i need sample code(programetically) to add calender on my iphone screen.There is some codes for what iam asking but iam not getting that.So ...
0
votes
2answers
63 views

How to get the next day based on current day using NSCalendar

I'm doing some weather app, in that i want to show the forecast for 4days i.e., current day to next 3days. I'm getting current day and the code is NSCalendar* cal = [NSCalendar currentCalendar]; ...
1
vote
4answers
67 views

Label not refreshing with the correct date

I have a label and two arrow buttons. When I push on the left arrow I want to show one day less than that date at the moment. And when I push on the right arrow a day should be added. At the moment ...
1
vote
1answer
98 views

setFirstWeekday doesnt work

Hello stack over flow ! i have an issue setFirstWeekDay doesnt work... i don't know why ... NSCalendar *gregorianT = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar]; ...
0
votes
2answers
101 views

How many quarters between two dates?

NSCalendar *calendar= [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar]; NSCalendarUnit unitFlags = NSYearCalendarUnit | NSMonthCalendarUnit | NSDayCalendarUnit; NSDateComponents ...
0
votes
1answer
190 views

NSCalendar CurrentCalendar issues

My app does a lot of calendar calculations, and so I need to setup a NSCalendar for most of those functions. Now calling [ NSCalendar currentCalendar ] seems to be extremely slow, as others have also ...

1 2 3 4 5