NSDate is an objective-c class of the Foundation framework. NSDate objects represent a single point in time.
-1
votes
2answers
33 views
NSDateFormatter with default time zone gives different date than NSDate description method
NSDate *date = [NSDate dateWithTimeIntervalSince1970:timestamp];
NSDateFormatter *_dateFormatter = [[NSDateFormatter alloc] init];
[_dateFormatter setTimeZone:[NSTimeZone defaultTimeZone]];
...
0
votes
2answers
40 views
JSON date to NSDate Issue
I have a date string in JSON format, it looks like this:
2013-05-22T10:54:40.437
And I'm trying to convert it to NSDate.
- (NSString *)dateFromString:(NSString *)datestring{
// Convert string to ...
0
votes
0answers
28 views
NSDateFormatter not behaving properly when converting from Buddhist calendar to Gregorian calendar date formats
I'm making an app that supports conversion of dates from the Buddhist calendar to Gregorian (Note: The "General > International > Calendar" settings of the device I'm testing on is "Buddhist".). ...
1
vote
3answers
64 views
iOS NSDate Comparison works differently when the 24-Hour Time in date settings toggles between ON and OFF?
Team,
I am comparing the date which is formed from string using NSDateFormatter with the iOS system date. The below statement returns true when the system date time settings is set with 24-Hour Time ...
0
votes
1answer
34 views
NSDate date with timezone and no localization of the formating
I need to get the date+time+timezone of the device without any localized text (I was getting arabic letters and different time formats from different countries using [nsdate date] )
Input code:
...
0
votes
2answers
44 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 ...
-1
votes
2answers
57 views
Making an NSDateFormatter to parse ISO dates
I have a simple question but it is driving me nuts. I am using an API, and I get a JSon object back, and one of the fields is a date. The date is formatted like this: 2013-05-17T02:00:00.000Z. I ...
1
vote
2answers
46 views
NSCalendar dateFromComponents returns wrong value when using weeks
So i try to get this weeks date range.
When i get current date components (only year and date) these are the values:
I noticed that there is "Obsolescent" written near week. Did try searching ...
0
votes
5answers
69 views
Check if current date is between two given dates [duplicate]
I want to check if current date is between two given dates. I do the following
NSDate *now = [NSDate new];
NSLog(@"Now is %@",now);
NSCalendar *myCalendar = [[NSCalendar alloc] ...
-1
votes
2answers
53 views
NSDate doesn't refresh [closed]
The NSDate in my first view Controller wont refresh until I go to another view controller and then come back to it. Any idea why that would be?
viewDidLoad:
NSTimer *timer = [NSTimer ...
1
vote
3answers
54 views
How can I make a countdown from the current date to a specific NSDate?
I want to have a countdown from the current time to a specific date and display that value in a label. I looked at some NSTimer tutorials but I could not figure out how to apply them to my situation.
...
1
vote
2answers
36 views
NSTimeInterval of today with time zero (midnight)
how i can calculate the NSTimeInterval of today with hour minute and seconds to zero?
i know that the NSTimeInterval of today it's this:
NSTimeInterval today = [[NSDate date] ...
0
votes
2answers
58 views
How do I split the current time into 3 strings; hours, minutes, and seconds
I'm making a clock app, and I want to display the current time, with the components (hours minutes, seconds) spaced out. I think that the only way to do that is to separate the time into three ...
0
votes
1answer
43 views
“DateWithFormat” works on terminal but not on iOS?
I have some code that does operations with dates. To see if it would work, I wrote a really simple program for the OSX console. It works fine! However, I wanted to start making an app so I used the ...
0
votes
1answer
41 views
Convert NSString to NSDate to compare which one is newer?
First time caller, long time listener :) Love this site. I'm new to Objective-C but have a blast learning. I'm sorry for such a simple question but I can't figure this out. :(
I have two ...
-1
votes
0answers
55 views
Need assistance regarding storing date in custom format
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc]init];
[dateFormatter setDateFormat:@"dd/MMMM/yyyy hh:mm a"];
[dateFormatter setLocale:[NSLocale currentLocale]];
[dateFormatter ...
0
votes
1answer
20 views
Convert “Sat, 27 Apr 2013 08:54:17 EDT” to NSDate
Can somebody help in converting the text "Sat, 27 Apr 2013 08:54:17 EDT" into String. I have tried the NSDateFormatter with formatting style of "EEE, dd MMMM yyyy HH:mm:ssZ" but it returns only nil ...
0
votes
3answers
35 views
NSString of comma separated days to NSDate calculate closest day to current day
I have a string like this 13, 27, 29 representing days of the month I want to separate them like below into date objects
mayString = [mayString componentsSeparatedByString:@","];
I then want to be ...
-4
votes
4answers
52 views
Converting Date to proper format when the Value obtained from the Db is in format 2012-07-13 00:00:00.0 [duplicate]
I know there are lot of questions on this topic . But I am not getting a proper solution to my
problem.I am retrieving Date from db , I am getting the Output as
as 2012-07-13 00:00:00.0 .
I am ...
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
2answers
34 views
NSDate confusion dateFromString format
//Grab current day from sys date all I am interested in is the day i.e 01 - 31 days of month
NSDateFormatter *dayFormatter = [[NSDateFormatter alloc] init];
[dayFormatter setDateFormat:@"dd"];
...
1
vote
1answer
22 views
NSDateFormatterFullStyle api is giving different results
NSDateFormatterFullStyle api is giving different date formats in iPod and iPhone. In
iPhone : Friday, 21 December 2012 (coma is missed)
iPod : Friday, 21 December, 2012.
Sample code:
NSDate *date ...
0
votes
0answers
54 views
Why is my date not being stored as NSDate?
My app takes a date string from a webservice and parses it into my core data db. The webservice returns this format date:
1900-01-01T00:00:00
I take the string and use NSDateFormatter to convert ...
-1
votes
1answer
25 views
Escape NSDateFormatter String
How to escape characters from NSDateFormatter format?
NSDate *currentDate = [NSDate date];
NSDateFormatter *dateFormater = [[NSDateFormatter alloc] init];
[dateFormater setDateFormat:@"dd/MM/yyyy ...
0
votes
2answers
60 views
How to sort “key” and “value” in NSMutableDictionary by NSDate? [duplicate]
I have a NSMutableDictionary, that contains contact names (NSString's) and the dates (NSDate's). The names are the keys. How do I sort the names by date created?
I assume I have to create a ...
0
votes
5answers
61 views
Convert GMT time to local time
I got current GMT time - 2013-05-15 08:55 AM
my current local time is - 2013-05-15 02:06 PM
and time zone is - Asia/Kolkata
I tried to convert the above GMT to my local time with this code
...
1
vote
3answers
66 views
objective-c: Conversion between TimeZones
I'm having problems converting a time string to a different timeZone.
This is a string example as the one I retrieve from a server: @"5/14/2013 4:19am"
I know the timeZone is America/New_York and I ...
-4
votes
3answers
49 views
IOS: Converting NSDate to NSString gives nil value
Where is my mistake? I have an NSDate with this format (data: 14/05/2013 10:52:27) and I have to obtain an NSString.
NSLog(@"Data: %@",lettureObj.data);
NSDateFormatter *outputDateFormatter = ...
0
votes
1answer
21 views
NSArray of string numbers representing NSDates grab only number closest to current date but ignoring todays date
I have an Array of strings called seperatedDates representing dates i.e. 13, 27, 29 I remove the comma separation using the below. Which then adds the items to the arrays indexes. i.e. 13 would be at ...
0
votes
3answers
67 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
0answers
26 views
For the same URL dataWithContentsOfURL: sometime returns nil & sometimes returns valid value [closed]
the url is pointing to a jpg. the url can be opened through the web browser & "curl -v url" returns valid values.
However, Say i am requesting imageURL1 & imageURL2, in code when i open the ...
1
vote
1answer
25 views
Get all dates of same day from array
Lets say I have NSMutableArray of different dates. Dates are represented in UITableView. If I click on UITableViewCell, how do I get all dates of that same day from NSMutableArray ?
So lets say I ...
0
votes
3answers
46 views
Convert ISO8601 String to NSDate with correct timezone
The server sends the following time to my iOS app via JSON when I get Blog Posts from a server
"createdAt": "2013-05-11 05:54:07.589698"
However, when, it is outputted to the screen in ...
0
votes
3answers
38 views
how to convert localized Date String to NSDate
I have NSString *localized_Date = minutesSinceMidnightToLocalizedTime (time units)
I get this string as 4:30 am, 10.00pm
how do I convert this string to NSDate?
PLease let me know.
-3
votes
3answers
41 views
Wrong date and time in NSDateDormatter
I want to create NSDate from two NSStrings which represent time and date.
Look at my code:
NSDateFormatter *form = [[NSDateFormatter alloc] init];
[form setDateFormat:@"hh:mm dd.MM.yyyy"];
NSDate ...
-2
votes
2answers
77 views
How to correctly display date time fetched from Core Data
- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
{
id <NSFetchedResultsSectionInfo> theSection = [[self.fetchedResultsController sections] ...
0
votes
1answer
34 views
Get NSDate to say “XX time ago” that article was published [duplicate]
I have a date an article was published, but need to get how long ago it was published in relation to the current time.
So if the Article was published at 8:45AM, and it is 9:45AM on the same day, I ...
0
votes
2answers
34 views
String to NSDate problems
I can't get NSDate working for the life of me, even thought I've scanned the questions on Stack Overflow, so help would be greatly appreciated.
- (UITableViewCell *)tableView:(UITableView *)tableView ...
0
votes
3answers
50 views
Checking textfield value for date in iOS
I used 3 textfield(string) and 1 button for display entered textfield in soap result.
When clicked button
TextField1=StationID --> 12345
TextField2 =FirstDate --> ...
0
votes
6answers
59 views
Getting wrong time using NSDateFormatter
When i am
[dateFormatter setDateFormat:@"HH:mm"]
using to fetch the current hour
i am getting correct time till 12:59 but after that it again starts from 1:00 i.e. 12:59 is displayed as 12:59 but ...
0
votes
1answer
35 views
iOS get absolute time independent of user set time?
I need to be able to get the absolute time the from the iOS device (iPhone 5.0 +)
I used CLLocation timestamp property, but that is not working like I thought it would.
If the user is in an area ...
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 ...
0
votes
1answer
35 views
NSDate from timestamp
I have a string which I get from web-service response as
"/Date(1366174800000-0500)/".
I want to convert the given string to NSDate with proper time stamp.
I am able to convert the ...
-2
votes
2answers
34 views
Attempting to format date month to full name returns (null)
I using the following code to try to convert the numerical month (5) to the full name (May). When I change the setting from MM to MMMM, however, it just returns null. Why is this?
NSDate *date = ...
0
votes
1answer
26 views
Perform different function if year is certain value
I have the following line of code which sets the content or a label to a date.
cell.birthdayLabel.text = [[GlobalBirthdaysEditor instance] getFormattedDateString:[birthday getDate]];
I need to find ...
-1
votes
1answer
36 views
Get just the year from date object [duplicate]
I have the following line of code which sets the content or a label to a date.
cell.birthdayLabel.text = [[GlobalBirthdaysEditor instance] getFormattedDateString:[birthday getDate]];
I need to find ...
0
votes
1answer
37 views
NSDate not showing exact days passed
I made a small program to calculate the difference between two dates, and output the number of days, and months passed. The program shows the number of months, and number of days fine, separately. ...
2
votes
1answer
29 views
MagicalRecord date parsing
I've got a date in the following format:
2013-05-04T05:07:09+00:00
I'm using MagicalRecord to map the NSDate automatically. As far as I can see the above date format should comply with ...
0
votes
3answers
68 views
How to make UIDatepicker to show user selected time
I have a UIDatepicker where I am letting user chose time . UITableview is in a UIView where on click of a UIButton a UIDdatePicker appears, when the user choose a time and press back button to dismiss ...
0
votes
3answers
48 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];
...




