├── .DS_Store ├── .gitignore ├── .swiftpm └── xcode │ └── package.xcworkspace │ └── contents.xcworkspacedata ├── BKCountDownTimer.podspec ├── Demo ├── Demo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── Demo │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift └── Podfile ├── LICENSE ├── Package.swift ├── README.md ├── Sources └── BKCountDownTimer │ ├── CircleBase.swift │ ├── CircleCount.swift │ ├── CircleTic.swift │ └── CircleTimer.swift ├── Tests ├── BKCountDownTimerTests │ ├── BKCountDownTimerTests.swift │ └── XCTestManifests.swift └── LinuxMain.swift ├── img-howto.png └── img-prev.png /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugkingK/CountDownTimer/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /.build 3 | /Packages 4 | /*.xcodeproj 5 | xcuserdata/ 6 | -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugkingK/CountDownTimer/HEAD/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /BKCountDownTimer.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugkingK/CountDownTimer/HEAD/BKCountDownTimer.podspec -------------------------------------------------------------------------------- /Demo/Demo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugkingK/CountDownTimer/HEAD/Demo/Demo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Demo/Demo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugkingK/CountDownTimer/HEAD/Demo/Demo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Demo/Demo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugkingK/CountDownTimer/HEAD/Demo/Demo/AppDelegate.swift -------------------------------------------------------------------------------- /Demo/Demo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugkingK/CountDownTimer/HEAD/Demo/Demo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Demo/Demo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugkingK/CountDownTimer/HEAD/Demo/Demo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Demo/Demo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugkingK/CountDownTimer/HEAD/Demo/Demo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Demo/Demo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugkingK/CountDownTimer/HEAD/Demo/Demo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Demo/Demo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugkingK/CountDownTimer/HEAD/Demo/Demo/Info.plist -------------------------------------------------------------------------------- /Demo/Demo/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugkingK/CountDownTimer/HEAD/Demo/Demo/ViewController.swift -------------------------------------------------------------------------------- /Demo/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugkingK/CountDownTimer/HEAD/Demo/Podfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugkingK/CountDownTimer/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugkingK/CountDownTimer/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugkingK/CountDownTimer/HEAD/README.md -------------------------------------------------------------------------------- /Sources/BKCountDownTimer/CircleBase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugkingK/CountDownTimer/HEAD/Sources/BKCountDownTimer/CircleBase.swift -------------------------------------------------------------------------------- /Sources/BKCountDownTimer/CircleCount.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugkingK/CountDownTimer/HEAD/Sources/BKCountDownTimer/CircleCount.swift -------------------------------------------------------------------------------- /Sources/BKCountDownTimer/CircleTic.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugkingK/CountDownTimer/HEAD/Sources/BKCountDownTimer/CircleTic.swift -------------------------------------------------------------------------------- /Sources/BKCountDownTimer/CircleTimer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugkingK/CountDownTimer/HEAD/Sources/BKCountDownTimer/CircleTimer.swift -------------------------------------------------------------------------------- /Tests/BKCountDownTimerTests/BKCountDownTimerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugkingK/CountDownTimer/HEAD/Tests/BKCountDownTimerTests/BKCountDownTimerTests.swift -------------------------------------------------------------------------------- /Tests/BKCountDownTimerTests/XCTestManifests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugkingK/CountDownTimer/HEAD/Tests/BKCountDownTimerTests/XCTestManifests.swift -------------------------------------------------------------------------------- /Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugkingK/CountDownTimer/HEAD/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /img-howto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugkingK/CountDownTimer/HEAD/img-howto.png -------------------------------------------------------------------------------- /img-prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugkingK/CountDownTimer/HEAD/img-prev.png --------------------------------------------------------------------------------