NSDate objects represent a single point in time.
I want to get the minimum and maximum date from a date picker, but minimum date should be "- 18" of …
ios objective-c nsdate nsdatepickerI have an NSArray that contains date strings (i.e. NSString) like this: "Thu, 21 May 09 19:10:09 -0700" I need to sort …
objective-c cocoa sorting nsarray nsdateHow do I get the day of the week as a string?
ios objective-c cocoa-touch nsdateI have a Core Data model with an NSDate property. I want to filter the database by day. I assume …
objective-c core-data nsdate nspredicate nsfetchedresultscontrollerI'm writing a piece of code where I want to time how long a button was held down. To do …
swift nsdate nstimeintervalHow is it possible to convert a string to an NSDate on iOS?
objective-c cocoa-touch nsstring formatting nsdateI want to convert server UTC time to local time and vice-versa. Here is my code.. var isTimeFromServer = true var …
swift nsdate nsdateformatter nsdatecomponentsHow to check if an NSDate belongs to today? I used to check it using first 10 characters from [aDate description]. [[…
ios objective-c cocoa-touch nsdate nscalendarIt seems that I can't subtract 7 days from the current date. This is how i am doing it: NSCalendar *gregorian = [[…
objective-c ios nsdate