├── CHANGELOG.md ├── Demo ├── Demo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── Demo.xccheckout └── Demo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Default-568h@2x.png │ ├── Default.png │ ├── Default@2x.png │ ├── Demo-Info.plist │ ├── Demo-Prefix.pch │ ├── ViewController.h │ ├── ViewController.m │ ├── en.lproj │ ├── InfoPlist.strings │ └── ViewController.xib │ └── main.m ├── GCDTimer.podspec ├── LICENSE ├── Rakefile ├── Readme.md ├── Source ├── GCDTimer.h └── GCDTimer.m └── VERSION /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # GCDTimer CHANGELOG 2 | 3 | ## 0.1.0 4 | 5 | Initial release. 6 | -------------------------------------------------------------------------------- /Demo/Demo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivanzoid/GCDTimer/HEAD/Demo/Demo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Demo/Demo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivanzoid/GCDTimer/HEAD/Demo/Demo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Demo/Demo.xcodeproj/project.xcworkspace/xcshareddata/Demo.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivanzoid/GCDTimer/HEAD/Demo/Demo.xcodeproj/project.xcworkspace/xcshareddata/Demo.xccheckout -------------------------------------------------------------------------------- /Demo/Demo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivanzoid/GCDTimer/HEAD/Demo/Demo/AppDelegate.h -------------------------------------------------------------------------------- /Demo/Demo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivanzoid/GCDTimer/HEAD/Demo/Demo/AppDelegate.m -------------------------------------------------------------------------------- /Demo/Demo/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivanzoid/GCDTimer/HEAD/Demo/Demo/Default-568h@2x.png -------------------------------------------------------------------------------- /Demo/Demo/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivanzoid/GCDTimer/HEAD/Demo/Demo/Default.png -------------------------------------------------------------------------------- /Demo/Demo/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivanzoid/GCDTimer/HEAD/Demo/Demo/Default@2x.png -------------------------------------------------------------------------------- /Demo/Demo/Demo-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivanzoid/GCDTimer/HEAD/Demo/Demo/Demo-Info.plist -------------------------------------------------------------------------------- /Demo/Demo/Demo-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivanzoid/GCDTimer/HEAD/Demo/Demo/Demo-Prefix.pch -------------------------------------------------------------------------------- /Demo/Demo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivanzoid/GCDTimer/HEAD/Demo/Demo/ViewController.h -------------------------------------------------------------------------------- /Demo/Demo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivanzoid/GCDTimer/HEAD/Demo/Demo/ViewController.m -------------------------------------------------------------------------------- /Demo/Demo/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Demo/Demo/en.lproj/ViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivanzoid/GCDTimer/HEAD/Demo/Demo/en.lproj/ViewController.xib -------------------------------------------------------------------------------- /Demo/Demo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivanzoid/GCDTimer/HEAD/Demo/Demo/main.m -------------------------------------------------------------------------------- /GCDTimer.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivanzoid/GCDTimer/HEAD/GCDTimer.podspec -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivanzoid/GCDTimer/HEAD/LICENSE -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivanzoid/GCDTimer/HEAD/Rakefile -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivanzoid/GCDTimer/HEAD/Readme.md -------------------------------------------------------------------------------- /Source/GCDTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivanzoid/GCDTimer/HEAD/Source/GCDTimer.h -------------------------------------------------------------------------------- /Source/GCDTimer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivanzoid/GCDTimer/HEAD/Source/GCDTimer.m -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 1.1.0 2 | --------------------------------------------------------------------------------