3 Star 0 Fork 0

Gitee 极速下载 / NVDate

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/novalagung/NVDate
克隆/下载
贡献代码
同步代码
取消
提示: 由于 Git 不支持空文件夾,创建文件夹后会生成空的 .keep 文件
Loading...
README
MIT

Introduction

Build Status CocoaPods CocoaPods

NVDate is an extension of NSDate class (Swift4), created to make date and time manipulation easier. NVDate is testable and robust, we wrote intensive test to make sure everything is safe.

Features

  • Has lot of API function to make date and time manipulation easier and fun
  • Has user friendly naming convention
  • NVDate functions are chainable
  • Very easy to use
  • Open Source!

Installation

Using Cocoa Pods

Swift4

Add these into your Podfile:

pod 'NVDate', '2.0.1'

Then import NVdate into your swift file.

import NVDate
Objective-C

Add these into your Podfile:

pod 'NVDate', '1.0.0'

Then import NVdate.h into your .h or .m file.

#import "NVDate.h"

Simple Example

Today date as string

let date = NVDate()

print(date.asString())
// ==> Wednesday, February 5, 2014, 4:56:35 PM Western Indonesia Time

Date 2018/05/25 as string

let date = NVDate(fromString: "2018/05/25", withFormat: "yyyy/MM/dd")

print(date.asString())
// ==> Friday, May 25, 2018, 00:00:00 AM Western Indonesia Time

Last day of next 2 months

let date = NVDate()
    .nextMonths(diff: 2)
    .lastDayOfMonth()

print(date.asString(withFormat: "dd-MM-yyyy"))
// ==> 30-04-2014

Second week of 2 months ago

let date = NVDate()
    .previousMonths(diff: 2)
    .firstDayOfMonth()
    .nextWeek()
date.dateFormat(setFormat: "yyyy-MM-dd HH:mm:ss")

print(date.asString())
// ==> 2013-12-08 17:03:36

Detect if 2018/05/25 is friday

let todayIsFriday = NVDate(year: 2018, month: 5, day: 25)
    .previousDay()
    .isTodayName(.friday)

print(todayIsFriday)
// ==> false

Dot syntax

let someday = NVDate()
    .previousDay()
    .previousWeek()
    .nextDay()
    .asString()

print(someday)
// ==> 2013-12-08 17:03:36

API Documentation

Initialization

Initialization Description
NVDate() Today date is used as date value
NVDate(fromString:withFormat:) Use specified date string as date value. Format of specified date string has to be explicitly defined.
NVDate(year:month:day:) Construct new date using year, month, and day
NVDate(year:month:day:hour:minute:second:) Construct new date using year, month, day, hour, minute, second
NVDate(fromDate:) use specified date as value

Methods

Method Description
date() return the date object
asString() return string formatted of date object
asString(withFormat:) return formatted string value of date object. the format has to be defined explicitly
setTimeAsZero() set hour, minute, and second as 0
dateFormat() return the current date format. the format is used on asString()
dateFormat(setFormat:) change current date format. the format is used on asString()
dateStyle() return the date style of current formatter
dateStyle(setStyle:) change date style of current formatter
timeStyle() return the time style of current formatter
timeStyle(setStyle:) change time style of current formatter
timeZone() return current timezone value
timeZone(setTimeZone:) change the timezone value
nextDays(days:) move to next x days
nextDay() move to next day
tomorrow() alias of nextDay()
previousDays(days:) move to previous x days
previousDay() move to previous day
yesterday() alias of previousDay()
nextWeek() move to next week
nextWeeks(diff:) move to next x weeks
previousWeek() move to previous week
previousWeeks(diff:) move to previous x weeks
nextMonth() move to next month
nextMonths(diff:) move to next x months
previousMonth() move to previous month
previousMonths(diff:) move to previous x months
nextYear() move to next year
nextYears(diff:) move to next x years
previousYear() move to previous year
previousYears(diff:) move to previous x years
firstDayOfMonth() move to first day of current month
lastDayOfMonth() move to last day of current month
firstMonthOfYear() move to first month of current year
lastMonthOfYear() move to last month of current year
nearestPreviousDay(_:) move to x previous day that name equal to NVDate.DayName
nearestNextDay(_:) move to x next day that name equal to NVDate.DayName
thisDayName() get today day name, in type NVDate.DayName
todayName() alias of thisDayName()
isThisDayName(_:) return true if specified day name is equal with day on the object
isTodayName(_:) alias of isThisDayName(_:)
thisMonthName() get this month name, in type NVDate.MonthName
isThisMonthName(_:) return true if specified month name is equal with month on the object
year() return year value
year(setYear:) change year value
month() return month value
month(setMonth:) change month value
weekOfYear() return week of year value
weekOfMonth() return week of month value
day() return day value
day(setDay:) change day value
hour() return hour value
hour(setHour:) change hour value
minute() return minute value
minute(setMinute:) change minute value
second() return second value
second(setSecond:) change second value

Contribution

Feel free to contribute by doing fork -> pull request

License

http://novalagung.mit-license.org/

The MIT License (MIT) Copyright (c) 2014 Noval Agung Prayogo Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

简介

NVDate 能帮助简化 NSDate 的操作 展开 收起
Objective-C
MIT
取消

发行版

暂无发行版

贡献者

全部

近期动态

加载更多
不能加载更多了
Objective-C
1
https://gitee.com/mirrors/NVDate.git
git@gitee.com:mirrors/NVDate.git
mirrors
NVDate
NVDate
master

搜索帮助