├── .gitignore ├── .travis.yml ├── Example ├── Example.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── Example.xcscheme ├── Example.xcworkspace │ └── contents.xcworkspacedata ├── Example │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── LaunchImage.launchimage │ │ │ └── Contents.json │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── Podfile ├── Podfile.lock └── Pods │ ├── Headers │ └── Public │ │ └── JTBorderDotAnimation │ │ └── JTBorderDotAnimation.h │ ├── Local Podspecs │ └── JTBorderDotAnimation.podspec │ ├── Manifest.lock │ ├── Pods.xcodeproj │ └── project.pbxproj │ └── Target Support Files │ ├── Pods-JTBorderDotAnimation │ ├── Pods-JTBorderDotAnimation-Private.xcconfig │ ├── Pods-JTBorderDotAnimation-dummy.m │ ├── Pods-JTBorderDotAnimation-prefix.pch │ └── Pods-JTBorderDotAnimation.xcconfig │ └── Pods │ ├── Pods-acknowledgements.markdown │ ├── Pods-acknowledgements.plist │ ├── Pods-dummy.m │ ├── Pods-environment.h │ ├── Pods-resources.sh │ ├── Pods.debug.xcconfig │ └── Pods.release.xcconfig ├── JTBorderDotAnimation.podspec ├── JTBorderDotAnimation ├── JTBorderDotAnimation.h └── JTBorderDotAnimation.m ├── LICENSE ├── README.md └── Screens └── example.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnvuko/JTBorderDotAnimation/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnvuko/JTBorderDotAnimation/HEAD/.travis.yml -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnvuko/JTBorderDotAnimation/HEAD/Example/Example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnvuko/JTBorderDotAnimation/HEAD/Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Example.xcodeproj/xcshareddata/xcschemes/Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnvuko/JTBorderDotAnimation/HEAD/Example/Example.xcodeproj/xcshareddata/xcschemes/Example.xcscheme -------------------------------------------------------------------------------- /Example/Example.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnvuko/JTBorderDotAnimation/HEAD/Example/Example.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Example/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnvuko/JTBorderDotAnimation/HEAD/Example/Example/AppDelegate.h -------------------------------------------------------------------------------- /Example/Example/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnvuko/JTBorderDotAnimation/HEAD/Example/Example/AppDelegate.m -------------------------------------------------------------------------------- /Example/Example/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnvuko/JTBorderDotAnimation/HEAD/Example/Example/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/Example/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnvuko/JTBorderDotAnimation/HEAD/Example/Example/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/Example/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnvuko/JTBorderDotAnimation/HEAD/Example/Example/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnvuko/JTBorderDotAnimation/HEAD/Example/Example/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Example/Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnvuko/JTBorderDotAnimation/HEAD/Example/Example/Info.plist -------------------------------------------------------------------------------- /Example/Example/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnvuko/JTBorderDotAnimation/HEAD/Example/Example/ViewController.h -------------------------------------------------------------------------------- /Example/Example/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnvuko/JTBorderDotAnimation/HEAD/Example/Example/ViewController.m -------------------------------------------------------------------------------- /Example/Example/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnvuko/JTBorderDotAnimation/HEAD/Example/Example/main.m -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnvuko/JTBorderDotAnimation/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnvuko/JTBorderDotAnimation/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/JTBorderDotAnimation/JTBorderDotAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../../../JTBorderDotAnimation/JTBorderDotAnimation.h -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/JTBorderDotAnimation.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnvuko/JTBorderDotAnimation/HEAD/Example/Pods/Local Podspecs/JTBorderDotAnimation.podspec -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnvuko/JTBorderDotAnimation/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnvuko/JTBorderDotAnimation/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JTBorderDotAnimation/Pods-JTBorderDotAnimation-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnvuko/JTBorderDotAnimation/HEAD/Example/Pods/Target Support Files/Pods-JTBorderDotAnimation/Pods-JTBorderDotAnimation-Private.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JTBorderDotAnimation/Pods-JTBorderDotAnimation-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnvuko/JTBorderDotAnimation/HEAD/Example/Pods/Target Support Files/Pods-JTBorderDotAnimation/Pods-JTBorderDotAnimation-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JTBorderDotAnimation/Pods-JTBorderDotAnimation-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnvuko/JTBorderDotAnimation/HEAD/Example/Pods/Target Support Files/Pods-JTBorderDotAnimation/Pods-JTBorderDotAnimation-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JTBorderDotAnimation/Pods-JTBorderDotAnimation.xcconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods/Pods-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnvuko/JTBorderDotAnimation/HEAD/Example/Pods/Target Support Files/Pods/Pods-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods/Pods-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnvuko/JTBorderDotAnimation/HEAD/Example/Pods/Target Support Files/Pods/Pods-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods/Pods-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnvuko/JTBorderDotAnimation/HEAD/Example/Pods/Target Support Files/Pods/Pods-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods/Pods-environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnvuko/JTBorderDotAnimation/HEAD/Example/Pods/Target Support Files/Pods/Pods-environment.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods/Pods-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnvuko/JTBorderDotAnimation/HEAD/Example/Pods/Target Support Files/Pods/Pods-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods/Pods.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnvuko/JTBorderDotAnimation/HEAD/Example/Pods/Target Support Files/Pods/Pods.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods/Pods.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnvuko/JTBorderDotAnimation/HEAD/Example/Pods/Target Support Files/Pods/Pods.release.xcconfig -------------------------------------------------------------------------------- /JTBorderDotAnimation.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnvuko/JTBorderDotAnimation/HEAD/JTBorderDotAnimation.podspec -------------------------------------------------------------------------------- /JTBorderDotAnimation/JTBorderDotAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnvuko/JTBorderDotAnimation/HEAD/JTBorderDotAnimation/JTBorderDotAnimation.h -------------------------------------------------------------------------------- /JTBorderDotAnimation/JTBorderDotAnimation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnvuko/JTBorderDotAnimation/HEAD/JTBorderDotAnimation/JTBorderDotAnimation.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnvuko/JTBorderDotAnimation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnvuko/JTBorderDotAnimation/HEAD/README.md -------------------------------------------------------------------------------- /Screens/example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnvuko/JTBorderDotAnimation/HEAD/Screens/example.gif --------------------------------------------------------------------------------