an apple class that creates string representations of NSDate (and NSCalendarDate) objects, and convert textual representations of dates and times into NSDate objects
0
votes
0answers
39 views
NSDate with NSDateFormatter returns nil date
I want to convert a string to an NSDate, like this:
NSDateFormatter *dateFormat = [[NSDateFormatter alloc] init];
[dateFormat setDateStyle:NSDateFormatterFullStyle];
NSDate *createdAt = [dateFormat ...
-1
votes
2answers
40 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
1answer
36 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
68 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
2answers
21 views
How to Parse Month and Year from Twitter API returned JSON
Suppose Twitter returns Wed Sep 14 18:52:57 +0000 2011in JSON format. How do i go about parsing it so that the display looks something like Sep 2011.
Im aware of DateFormatter. I tried the following ...
-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 ...
0
votes
5answers
70 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] ...
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
69 views
NSDateFormatter not working to set setTimeZone
I am trying to know the difference between two dates (Including days,hours,minutes and seconds). For that I am using below code, but It's not working.
+ ...
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 ...
0
votes
1answer
23 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
37 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 ...
0
votes
2answers
46 views
Calculate date and time corresponding to different timezone
I have an ipad application that draws a graph with time on y-axis. Now my problem is that, this same graph by a user can be accessed anywhere in the world. But then the time on the graph should 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
25 views
MacOs X dynamic library incorrect work in Delphi XE3 project
I have created simple ObjectiveC dynamic library with one function
NSString* DateTimeToString(NSDate* dt)
{
NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
[formatter ...
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
23 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 ...
-1
votes
1answer
28 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
1answer
35 views
NSDateFormatter parses wrong?
The following code
NSDateFormatter* dateFormatter = [[[NSDateFormatter alloc] init] autorelease];
[dateFormatter setDateFormat:@"MM/dd/yyyy"];
NSString* source = @"11/30/2012";
...
0
votes
2answers
60 views
Retrieve date and time from UIDatePicker iOS
I want to retrieve date and time in format e.g "Friday May 31, 2013 12:00 pm". How can I achieve that with NSDateFormatter?
0
votes
1answer
29 views
Having trouble getting the date from a JSON call
I am pulling a date from JSON in the format of "1900-01-01T00:00:00-06:00"
The code I am currently trying (and failing to parse with) is this
NSDateFormatter *formatter = [[NSDateFormatter alloc] ...
1
vote
3answers
67 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 = ...
-3
votes
2answers
82 views
how to convert string in 24 hour format to date in 24 hour format [duplicate]
+(NSDate *)DateServerFormatFromString:(NSString *)date
{
NSDateFormatter* dateFormatter = [[NSDateFormatter alloc] init] ;
NSLocale *locale = [[NSLocale alloc] ...
-3
votes
5answers
83 views
date formatting returns 12 hour format even when locale idenifier en_GB set
+(NSDate *)DateServerFormatFromString:(NSString *)date
{
NSDateFormatter* dateFormatter = [[NSDateFormatter alloc] init] ;
NSLocale *locale = [[NSLocale alloc] initWithLocaleIdentifier:@"en_GB"];
...
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 ...
1
vote
1answer
27 views
NSDateFormatter: Converting “5/13/2012 6:05am” (US, EDT) to “13/05/2012 12:05” (IT, GMT+1)
I am retrieving a time value from a server. The format is:
"5/13/2012 6:05am"
It is not specified in the string but I know it is "EDT".
I need to:
1) Get rid of the am/pm thing.
2) Convert it ...
-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
78 views
How to correctly display date time fetched from Core Data
- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
{
id <NSFetchedResultsSectionInfo> theSection = [[self.fetchedResultsController sections] ...
-2
votes
5answers
47 views
Issue in coverting GMT time to Local time
My current Device time is --- 2013-05-09 10:23 AM
I convert it int GMT with following code
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
dateFormatter.dateFormat = ...
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
25 views
How to I get UTC from NSDateFormatter?
The following code in iOS
NSDateFormatter *formatter = [[[NSDateFormatter alloc] init] autorelease];
[formatter setDateStyle:NSDateFormatterFullStyle];
[formatter ...
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 ...
-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 = ...
2
votes
1answer
30 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
0answers
15 views
NSDate formatter for Facebook Graph created time
2013-04-24T21:52:19+0000
This is the timestamp from Facebooks Graph API. What would I set the date formatter to be able to translate this into a relevant time?
-1
votes
3answers
35 views
Set Formatted NSDate in UILabel text [duplicate]
I have date which came from api and stored as string like
2013-05-09 09:30:00
and i want to show as
09-05-2013 09:30
in UILabel. I want to know how to use NSDateFormatter.
Thanks in advance!
1
vote
3answers
50 views
Strange NSDate and NSDateFormatter behaviour
I am trying to get date for week of this year. this is my code and also a runtime value that is being calculated:
Why is the year not correct? Tried other formats as well, like y-w and all gave me ...
1
vote
2answers
39 views
IOS: NSDateFormatter for region format Italy
I have tested my app with regiorn format USA and the date display is correct. When region changed to Italy where I live now contains null value.
My starter string date is:
- "May 2, 2013 6:46:33 ...
0
votes
3answers
51 views
NSDateformatter Converting date to string
I am having the following date and time 2013-04-25 10:42:44 +0000. When i convert the above date to string, i am getting the output as 2013-04-25 16:12:44. Following is the code i am using to convert ...
0
votes
1answer
30 views
NSDateFormatter cant parse German date
I try to make my NSDateFormatter set its locale to German, but it fails. In the code below, while the dateFrom is successfully parsed, dateTo is not.
Note: In German it is Februar, not February.
...
1
vote
2answers
40 views
Specify the time offset with an NSDateFormatter (-0500)
I have some date strings similar to these:
2013-01-25 00:00:00 -0500
2013-01-22 00:00:00 -0700
2013-01-26 00:00:00 -0200
I want to use an NSDateFormatter to create an NSDate using these kinds of ...
0
votes
1answer
38 views
how to get the date as NSDate with format yyyy/mm/dd using nsdateformatter
NSDateFormatter *newformat = [NSDateFormatter new];
[newformat setDateFormat:@"yyyy/MM/dd HH:mm:ss"];
NSString *string = [newformat stringFromDate:[NSDate date]];
i am getting string as required ...
-1
votes
2answers
53 views
NSDateFormatter Not Formatting String
I have the following code which is being called in cellForRowAtIndexPath for a UITableView.
self.dateFormatter = [[NSDateFormatter alloc] init];
[self.dateFormatter setDateFormat:@"EEEE, dd MMM yyyy ...
3
votes
2answers
51 views
Date conversion issue with objective C
Weird issue I'm having, if I do this:
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setDateFormat:@"MMMM d, yyyy EEEE 'at' h:mm a"];
NSString *originalDate = ...
1
vote
2answers
70 views
How to convert any human readable date to unix timestamp [duplicate]
I have a date like this 01/20/2013 and trying to get the unix timestamp for this date. I have searched a lot and found out that how to convert present date into unix timestamp but didn't find my ...
0
votes
1answer
27 views
Why is my NSDateFormatter creating the wrong date?
I am trying to create datefromstring. However, the date is just wrong that is created. Can anyone see anything wrong with my code?
this is the code:
NSDateFormatter *format = [[NSDateFormatter ...
1
vote
2answers
70 views
Calculating end time by using the start time and duration - IOS
I have googled the answer for this question and not found any objective C code.
I have a situation to calculate the end time from a start time.
For e.g.: consider now current date and time is 29th ...
0
votes
1answer
55 views
NSDateFormatter printing current date in format “M/yyyy hh:mm” in any locale
Hi I want to print current date in any locale as M/yyyy hh:mm.
I was using this method with currentLocale as the option in locale.
+ (NSString *)dateFormatFromTemplate:(NSString *)template ...
2
votes
2answers
48 views
How do I get ISO 8601 date in iOS?
It's easy enough to get the ISO 8601 date string (e.g., 2004-02-12T15:19:21+00:00) in PHP via date('c'), but how does one get it in Objective-C (iPhone)? Is there a similarly short way to do it?
...



