
- Removed YuMi/Library/ (138 MB, not tracked) - Removed YuMi/Resources/ (23 MB, not tracked) - Removed old version assets (566 files, not tracked) - Excluded Pods/, xcuserdata/ and other build artifacts - Clean repository optimized for company server deployment
96 lines
2.8 KiB
Objective-C
96 lines
2.8 KiB
Objective-C
//
|
|
// NVDate.h
|
|
//
|
|
// Created by Noval Agung Prayogo on 2/5/14.
|
|
// Copyright (c) 2014 Noval Agung Prayogo. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
typedef NS_OPTIONS(NSUInteger, NVDayUnit) {
|
|
NVDayUnitSunday = 1,
|
|
NVDayUnitMonday = 2,
|
|
NVDayUnitTuesday = 3,
|
|
NVDayUnitWednesday = 4,
|
|
NVDayUnitThursday = 5,
|
|
NVDayUnitFriday = 6,
|
|
NVDayUnitSaturday = 7
|
|
};
|
|
|
|
typedef NS_OPTIONS(NSUInteger, NVMonthUnit) {
|
|
NVMonthUnitJanuary = 1,
|
|
NVMonthUnitFebruary = 2,
|
|
NVMonthUnitMarch = 3,
|
|
NVMonthUnitApril = 4,
|
|
NVMonthUnitMay = 5,
|
|
NVMonthUnitJune = 6,
|
|
NVMonthUnitJuly = 7,
|
|
NVMonthUnitAugust = 8,
|
|
NVMonthUnitSeptember = 9,
|
|
NVMonthUnitOctober = 10,
|
|
NVMonthUnitNovember = 11,
|
|
NVMonthUnitDecember = 12,
|
|
};
|
|
|
|
@interface NVDate : NSObject
|
|
|
|
- (id)initUsingToday;
|
|
- (id)initUsingDate:(NSDate *)date;
|
|
- (id)initUsingYear:(NSInteger)year month:(NSInteger)month day:(NSInteger)day;
|
|
- (id)initUsingYear:(NSInteger)year month:(NSInteger)month day:(NSInteger)day hour:(NSInteger)hour minute:(NSInteger)minute second:(NSInteger)second;
|
|
- (id)initUsingString:(NSString *)stringDate;
|
|
- (id)initUsingString:(NSString *)stringDate withFormat:(NSString *)dateFormat;
|
|
- (id)initUsingSeconds:(NSInteger)seconds;
|
|
|
|
- (NSDate *)date;
|
|
|
|
- (NSString *)stringValue;
|
|
- (NSString *)stringValueWithFormat:(NSString *)dateFormat;
|
|
|
|
- (instancetype)zeroTime;
|
|
|
|
- (instancetype)previousDay;
|
|
- (instancetype)previousDays:(NSInteger)days;
|
|
- (instancetype)nextDay;
|
|
- (instancetype)nextDays:(NSInteger)days;
|
|
|
|
- (instancetype)previousWeek;
|
|
- (instancetype)previousWeeks:(NSInteger)weeks;
|
|
- (instancetype)nextWeek;
|
|
- (instancetype)nextWeeks:(NSInteger)weeks;
|
|
|
|
- (instancetype)previousMonth;
|
|
- (instancetype)previousMonths:(NSInteger)months;
|
|
- (instancetype)nextMonth;
|
|
- (instancetype)nextMonths:(NSInteger)months;
|
|
|
|
- (instancetype)previousYear;
|
|
- (instancetype)previousYears:(NSInteger)years;
|
|
- (instancetype)nextYear;
|
|
- (instancetype)nextYears:(NSInteger)years;
|
|
|
|
- (instancetype)firstDayOfMonth;
|
|
- (instancetype)lastDayOfMonth;
|
|
|
|
- (instancetype)firstMonthOfYear;
|
|
- (instancetype)lastMonthOfYear;
|
|
|
|
- (instancetype)previousDayOfDayName:(NVDayUnit)dayUnit;
|
|
- (instancetype)nextDayOfDayName:(NVDayUnit)dayUnit;
|
|
|
|
- (BOOL)isCurrentDayName:(NVDayUnit)dayUnit;
|
|
- (BOOL)isCurrentMonthName:(NVMonthUnit)monthUnit;
|
|
|
|
@property NSString *dateFormatUsingString;
|
|
@property NSDateFormatterStyle dateFormatUsingStyle;
|
|
@property NSDateFormatterStyle timeFormatUsingStyle;
|
|
@property NSInteger year;
|
|
@property NSInteger month;
|
|
@property (readonly) NSInteger week;
|
|
@property NSInteger day;
|
|
@property NSInteger hour;
|
|
@property NSInteger minute;
|
|
@property NSInteger second;
|
|
|
|
@end
|