0
votes
3answers
478 views
Nil NSDate when trying to get date from UTC string in zulu time
Writing an iPhone app in Objective-C, I have a date in string form (in UTC format, with a Z on the end to denote zero UTC offset, or zulu time), which I need to parse into an NSDat …
0
votes
1answer
26 views
[iPhone] Formatting an NSDate
Hi, I am pulling data from an RSS Feed. One of the keys in the feed is is a string representing the date and time the item was created.
I am trying to convert this string value to …
2
votes
2answers
47 views
Get all days of any month with objective-c
A seemingly simple question...how can I return a list of days for any specified month?
NSDate *today = [NSDate date]; //Get a date object for today's date
NSCalendar *c = [NSCalen …
0
votes
2answers
52 views
how to get timezone from a NSdate object?
I have an application in which I'm running a countdown timer.I am storing start date and end date in database.it works fine even if i change the time zone.but if in the same timezo …
1
vote
3answers
117 views
Sort NSArray by NSDate, today
Hi,
I have loaded item from core data in an NSMutableArray. Each item, when created, is given a due date, that the user choices.
How do I sort, so only the item that is due tod …
0
votes
1answer
57 views
how to compare dates in iphone sdk?
i have two dates i want to compare which one is greater date how do i do this in objective-c?
0
votes
1answer
86 views
How to convert every time zone in GMT +5.30?
I am creating an application. I am running a countdown timer and saving time into a database by converting time into a floating point value (double). Suppose I start the timer at 2 …
0
votes
2answers
63 views
how to save and retrieve date+time into sqlite3 database?
i want to save current date+time into database and also want to retrieve it. i know that in objective-C we cannot save date+time directly.
i have double as a field into database an …
0
votes
2answers
54 views
how to add hours in a nsdate?
i have a date converted to double value and saved in database.now i want to compare if cureentdate > myDataBaseDate+8 hours. means i want to get 8 hours more added in my database d …
1
vote
2answers
93 views
Whither NSDate dateByAddingTimeInterval on iPhone OS?
Greetings! I must be seeing things. Look at this excerpt from the iPhone OS reference library:
addTimeInterval: Returns a new NSDate
object that is set to a given number
of …
1
vote
2answers
83 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, a …
1
vote
1answer
118 views
NSDateFormatter dateFromString will not parse a particular date string
Good day,
i have an NSDateFormatter that doesn't seem to like a particular string that i am trying to convert. this particular instance is
2009-10-16T09:42:24.999605
All of my …
0
votes
1answer
115 views
Converting a date (string) into another date format (string)
I have a novice question, will be happy if any one out there can help me.
I have an NSMutableArray, for example:
{
JobID = 109302930;
Subject = "Test Subject";
SubmitDate = "2009 …
0
votes
1answer
45 views
iPhone - How to return year as an integer from a given date?
Hi all,
I'm trying to return the 4 digit year from any given date as an integer. I'm not strong with the NSCalendar or NSDate functions, but have tried using them with components …
0
votes
1answer
93 views
How to Convert XML Date format to Cocoa
I have a Date format:
2009-08-10T16:03:03Z
that I want to convert to:
@"MMM dd, HH:mm a"
I retrieve the xml format in an NSString. I tried to use the NSDateformatter:
NSDateForma …
