├── .gitignore ├── README.markdown ├── SEHumanizedTime ├── NSDate+HumanizedTime.h ├── NSDate+HumanizedTime.m └── en.lproj │ ├── Localizable.strings │ └── Localizable_full.strings ├── SEHumanizedTimeDiff.podspec ├── SEHumanizedTimeDiffDemo.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── SEHumanizedTimeDiffDemo ├── AppDelegate.h ├── AppDelegate.m ├── MasterViewController.h ├── MasterViewController.m ├── SEHumanizedTimeDiffDemo-Info.plist ├── SEHumanizedTimeDiffDemo-Prefix.pch └── main.m └── Screenshots ├── 1.png ├── 2.png ├── 3.png ├── 4.png ├── 5.png └── 6.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarperdag/SEHumanizedTimeDiff/HEAD/.gitignore -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarperdag/SEHumanizedTimeDiff/HEAD/README.markdown -------------------------------------------------------------------------------- /SEHumanizedTime/NSDate+HumanizedTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarperdag/SEHumanizedTimeDiff/HEAD/SEHumanizedTime/NSDate+HumanizedTime.h -------------------------------------------------------------------------------- /SEHumanizedTime/NSDate+HumanizedTime.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarperdag/SEHumanizedTimeDiff/HEAD/SEHumanizedTime/NSDate+HumanizedTime.m -------------------------------------------------------------------------------- /SEHumanizedTime/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarperdag/SEHumanizedTimeDiff/HEAD/SEHumanizedTime/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /SEHumanizedTime/en.lproj/Localizable_full.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarperdag/SEHumanizedTimeDiff/HEAD/SEHumanizedTime/en.lproj/Localizable_full.strings -------------------------------------------------------------------------------- /SEHumanizedTimeDiff.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarperdag/SEHumanizedTimeDiff/HEAD/SEHumanizedTimeDiff.podspec -------------------------------------------------------------------------------- /SEHumanizedTimeDiffDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarperdag/SEHumanizedTimeDiff/HEAD/SEHumanizedTimeDiffDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SEHumanizedTimeDiffDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarperdag/SEHumanizedTimeDiff/HEAD/SEHumanizedTimeDiffDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SEHumanizedTimeDiffDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarperdag/SEHumanizedTimeDiff/HEAD/SEHumanizedTimeDiffDemo/AppDelegate.h -------------------------------------------------------------------------------- /SEHumanizedTimeDiffDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarperdag/SEHumanizedTimeDiff/HEAD/SEHumanizedTimeDiffDemo/AppDelegate.m -------------------------------------------------------------------------------- /SEHumanizedTimeDiffDemo/MasterViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarperdag/SEHumanizedTimeDiff/HEAD/SEHumanizedTimeDiffDemo/MasterViewController.h -------------------------------------------------------------------------------- /SEHumanizedTimeDiffDemo/MasterViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarperdag/SEHumanizedTimeDiff/HEAD/SEHumanizedTimeDiffDemo/MasterViewController.m -------------------------------------------------------------------------------- /SEHumanizedTimeDiffDemo/SEHumanizedTimeDiffDemo-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarperdag/SEHumanizedTimeDiff/HEAD/SEHumanizedTimeDiffDemo/SEHumanizedTimeDiffDemo-Info.plist -------------------------------------------------------------------------------- /SEHumanizedTimeDiffDemo/SEHumanizedTimeDiffDemo-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarperdag/SEHumanizedTimeDiff/HEAD/SEHumanizedTimeDiffDemo/SEHumanizedTimeDiffDemo-Prefix.pch -------------------------------------------------------------------------------- /SEHumanizedTimeDiffDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarperdag/SEHumanizedTimeDiff/HEAD/SEHumanizedTimeDiffDemo/main.m -------------------------------------------------------------------------------- /Screenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarperdag/SEHumanizedTimeDiff/HEAD/Screenshots/1.png -------------------------------------------------------------------------------- /Screenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarperdag/SEHumanizedTimeDiff/HEAD/Screenshots/2.png -------------------------------------------------------------------------------- /Screenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarperdag/SEHumanizedTimeDiff/HEAD/Screenshots/3.png -------------------------------------------------------------------------------- /Screenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarperdag/SEHumanizedTimeDiff/HEAD/Screenshots/4.png -------------------------------------------------------------------------------- /Screenshots/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarperdag/SEHumanizedTimeDiff/HEAD/Screenshots/5.png -------------------------------------------------------------------------------- /Screenshots/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarperdag/SEHumanizedTimeDiff/HEAD/Screenshots/6.png --------------------------------------------------------------------------------