Skip to content

Commit 34e48a8

Browse files
authored
Update README.md
1 parent d2ff439 commit 34e48a8

File tree

1 file changed

+28
-2
lines changed

1 file changed

+28
-2
lines changed

README.md

Lines changed: 28 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1-
![Banner](https://raw.githubusercontent.com/MatthewYork/Resources/master/DateTools/DateToolsHeader.png)
1+
![Banner](https://raw.githubusercontent.com/MatthewYork/Resources/master/DateTools/DateToolsHeader2.png)
22

33
## DateTools
44

5-
DateTools was written to streamline date and time handling in Objective-C. Classes and concepts from other languages served as an inspiration for DateTools, especially the [DateTime](http://msdn.microsoft.com/en-us/library/system.datetime(v=vs.110).aspx) structure and [Time Period Library](http://www.codeproject.com/Articles/168662/Time-Period-Library-for-NET) for .NET. Through these classes and others, DateTools removes the boilerplate required to access date components, handles more nuanced date comparisons, and serves as the foundation for entirely new concepts like Time Periods and their collections.
5+
DateTools was written to streamline date and time handling in iOS. Classes and concepts from other languages served as an inspiration for DateTools, especially the [DateTime](http://msdn.microsoft.com/en-us/library/system.datetime(v=vs.110).aspx) structure and [Time Period Library](http://www.codeproject.com/Articles/168662/Time-Period-Library-for-NET) for .NET. Through these classes and others, DateTools removes the boilerplate required to access date components, handles more nuanced date comparisons, and serves as the foundation for entirely new concepts like Time Periods and their collections.
66

77
[![Build Status](https://travis-ci.org/MatthewYork/DateTools.svg?branch=master)](https://travis-ci.org/MatthewYork/DateTools)
88
[![CocoaPods](https://cocoapod-badges.herokuapp.com/v/DateTools/badge.png)](http://cocoapods.org/?q=datetools)
9+
[![CocoaPods](https://cocoapod-badges.herokuapp.com/v/DateToolsSwift/badge.png)](http://cocoapods.org/?q=datetoolsswift)
910

1011
####Featured In
1112
<table>
@@ -39,12 +40,37 @@ DateTools was written to streamline date and time handling in Objective-C. Class
3940

4041
**CocoaPods**
4142

43+
Swift
44+
45+
<code>pod 'DateToolsSwift'</code>
46+
47+
Objective-C (Legacy)
48+
4249
<code>pod 'DateTools'</code>
4350

4451
**Manual Installation**
4552

4653
All the classes required for DateTools are located in the DateTools folder in the root of this repository. They are listed below:
4754

55+
Swift (Found in DateToolsSwift/DateTools)
56+
* <code>Constants.swift</code>
57+
* <code>Date+Bundle.swift</code>
58+
* <code>Date+Comparators.swift</code>
59+
* <code>Date+Components.swift</code>
60+
* <code>Date+Format.swift</code>
61+
* <code>Date+Inits.swift</code>
62+
* <code>Date+Manipulations.swift</code>
63+
* <code>Date+TimeAgo.swift</code>
64+
* <code>DateTools.bundle</code>
65+
* <code>Enums.swift</code>
66+
* <code>Integer.DateTools.swift</code>
67+
* <code>TimeChunk.swift</code>
68+
* <code>TimePeriod.swift</code>
69+
* <code>TimePeriodChain.swift</code>
70+
* <code>TimePeriodCollection.swift</code>
71+
* <code>TimePeriodGroup.swift</code>
72+
73+
Objective-C (Found in DateTools/DateTools)
4874
* <code>DateTools.h</code>
4975
* <code>NSDate+DateTools.{h,m}</code>
5076
* <code>DTConstants.h</code>

0 commit comments

Comments
 (0)