The nsdatecomponent tag has no wiki summary.
5
votes
2answers
355 views
NSDateComponents - day method returning wrong day
I can't seem to figure out why the day doesn't change when I get to the 6th of November, 2011. All I'm doing is iterating through the days. Any help would be appreciated. Here is my code:
...
1
vote
2answers
227 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 ...
0
votes
1answer
25 views
Why NSCalendar date differ from NSDateComponents components date?
ANy idea why this code output "2011-11-30 23:00:00 +0000" instead "2011-12-01 00:00:00 +0000"
NSDateComponents *minDateComponents = [[NSDateComponents alloc] init];
[minDateComponents setYear:2011];
...
0
votes
1answer
146 views
NSDate Math? Now and Fire timer in the future
I have been racking my brains on this one looking for a quick solution.
I need to fire off a NSTime at a specific time based on the current time in a specific time zone.
For example, I get the ...
0
votes
1answer
254 views
NSDate set time
I want to set the NSDate time with my desired hours:minutes:seconds
currently im working with NSDate component but it is not giving the desired result
[comps setHour: -hours];
[comps setMinute:0];
...
0
votes
1answer
65 views
why does this code display the date being SAT where with NSDateComponent setWeekday I used 1 for SUN?
Why does this code display the date being SAT where with NSDateComponent & setWeekday I used 1 for SUN?
// Set Day
NSDateComponents *comps = [[NSDateComponents alloc] init];
[comps setWeekday:1];
...