Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/oscardelben/DateCalculations
Date Calculations for Cocoa Inspired by Ruby on Rails
https://github.com/oscardelben/DateCalculations
Last synced: 1 day ago
JSON representation
Date Calculations for Cocoa Inspired by Ruby on Rails
- Host: GitHub
- URL: https://github.com/oscardelben/DateCalculations
- Owner: oscardelben
- License: mit
- Created: 2011-02-27T15:58:29.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2015-10-30T15:35:24.000Z (about 9 years ago)
- Last Synced: 2024-11-08T13:37:23.339Z (5 days ago)
- Language: Objective-C
- Homepage:
- Size: 212 KB
- Stars: 125
- Watchers: 6
- Forks: 18
- Open Issues: 2
-
Metadata Files:
- Readme: Readme
- License: License
Awesome Lists containing this project
README
== NSDateCalculations
The goal to this library is to provide an easy interface for doing calculations with dates in Objective C (mac + iphone).
To use, simply drop the DateCalculations subdirectory inside your project and require "NSDate+Calculations.h".
Currently implemented methods:
+ (NSDate *)dateWithYear:(int)year month:(int)month day:(int)day hour:(int)hour minute:(int)minute second:(int)second;
+ (NSDate *)createDate:(int)year month:(int)month day:(int)day hour:(int)hour minute:(int)minute second:(int)second; /* DEPRECATED */- (NSDate *)beginningOfDay;
- (NSDate *)beginningOfMonth;
- (NSDate *)beginningOfQuarter;
- (NSDate *)beginningOfWeek;
- (NSDate *)beginningOfYear;- (NSDate *)endOfDay;
- (NSDate *)endOfMonth;
- (NSDate *)endOfQuarter;
- (NSDate *)endOfWeek;
- (NSDate *)endOfYear;- (NSDate *)advance:(int)years months:(int)months weeks:(int)weeks days:(int)days
hours:(int)hours minutes:(int)minutes seconds:(int)seconds;- (NSDate *)ago:(int)years months:(int)months weeks:(int)weeks days:(int)days
hours:(int)hours minutes:(int)minutes seconds:(int)seconds;- (NSDate *)change:(NSDictionary *)changes;
- (int)daysInMonth;
- (NSDate *)monthsSince:(int)months;
- (NSDate *)yearsSince:(int)years;- (NSDate *)nextMonth;
- (NSDate *)nextWeek;
- (NSDate *)nextYear;- (NSDate *)prevMonth;
- (NSDate *)prevYear;
- (NSDate *)yearsAgo:(int)years;
- (NSDate *)yesterday;- (NSDate *)tomorrow;
- (BOOL)future;
- (BOOL)past;
- (BOOL)today;More documentation coming soon as the project evolves.
License: MIT