Punctual.swift alternatives and similar libraries
Based on the "Date & Time" category.
Alternatively, view Punctual.swift alternatives based on common mentions on social networks and blogs.
-
NSDate-TimeAgo
A "time ago", "time since", "relative date", or "fuzzy date" category for NSDate and iOS, Objective-C, Cocoa Touch, iPhone, iPad. -
iso-8601-date-formatter
A Cocoa NSFormatter subclass to convert dates to and from ISO-8601-formatted strings. Supports calendar, week, and ordinal formats. -
TrueTime
Get the true current time impervious to device clock time changes. (NTP library for Swift) . -
10Clock
This Control is a beautiful time-of-day picker heavily inspired by the iOS 10 "Bedtime" timer.
Get performance insights in less than 4 minutes
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest. Visit our partner's website for more details.
Do you think we are missing an alternative of Punctual.swift or a related project?
README
Punctual
Swift dates, more fun. Heavily inspired by ObjectiveSugar
Installation
Punctual is available through the Swift Package Manager!
Just add this as a dependency in your Package.swift
:
.Package(url: "https://github.com/harlanhaskins/Punctual.swift.git", majorVersion: 1)
Contents
Punctual
extends Int
, NSDateComponents
, NSDate
, and NSCalendarUnit
, and adds features to make them work well together. It uses the robust NSCalendar
APIs, so you can be sure it's accurate!
print(1.day.ago)
// Optional(2015-04-08 04:49:30 +0000)
print(10.days.until(Date()))
// Optional(2015-03-30 04:11:03 +0000)
print((1.day + 2.months - 9.years).ago)
// Optional(2024-02-08 18:28:26 +0000)
print(Date() - 1.day.ago!)
print(1.year.timeInterval)
// Optional(31622400.0)
print((Date() + 30.minutes)!.nearestHour)
// 1
print(4.years.fromNow?.longTimeString)
// Optional("12:11:44 AM EDT")
print(4.years.fromNow?.stringWithFormat("HH:mm"))
// Optional("00:11")