NSDate objects represent a single point in time.
I want to convert nsdate in to relative format like "Today","Yesterday","a week ago","a month ago","a year …
ios objective-c nsdate nsdateformatter relative-dateI have a custom object "Meeting" I am adding all the objects in an array. What I want to do …
arrays swift sorting parse-platform nsdateIf I use the following code: NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init]; [dateFormatter setDateFormat:@"yyyy-MM-dd'T'HH:mm"]; NSDate *myDate = [dateFormatter dateFromString:@"2010-01…
objective-c nsdate nsdateformatter iso8601What is the most efficient way to obtain an NSDate object that represents midnight of the current day?
objective-c cocoa-touch nsdateI have a NSDictionary that parsed to an array one of the element is date, i tried using [startimeArray sortUsingSelector:@…
ios objective-c uitableview nsdate nsdictionaryI would like to subtract 4 hours from a date. I read the date string into an NSDate object use the …
iphone objective-c nsdateI'm not iOS developer but started learning Swift. I try to convert some logic from Android project to iOS. I …
swift nsdate nstimeintervalHow can I get the last day of the current month as an NSDate?
objective-c cocoa-touch cocoa date nsdateI have this Optional(2015-07-27 19:29:50 +0000) as a string? and I want to convert it to a date (NSDate) but …
ios swift nsdate nsdateformatterI need to be able to get the weekday from nsdate, i have the following code and it always return 1. …
objective-c nsdate weekday