├── .gitignore ├── .travis.yml ├── DottedLineView.podspec ├── DottedLineView ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ └── DottedLineView.swift ├── Example ├── DottedLineView.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── DottedLineView-Example.xcscheme ├── DottedLineView.xcworkspace │ └── contents.xcworkspacedata ├── DottedLineView │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ └── ViewController.swift ├── Podfile ├── Podfile.lock ├── Pods │ ├── Local Podspecs │ │ └── DottedLineView.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ └── Target Support Files │ │ ├── DottedLineView │ │ ├── DottedLineView-dummy.m │ │ ├── DottedLineView-prefix.pch │ │ ├── DottedLineView-umbrella.h │ │ ├── DottedLineView.modulemap │ │ ├── DottedLineView.xcconfig │ │ └── Info.plist │ │ ├── Pods-DottedLineView_Example │ │ ├── Info.plist │ │ ├── Pods-DottedLineView_Example-acknowledgements.markdown │ │ ├── Pods-DottedLineView_Example-acknowledgements.plist │ │ ├── Pods-DottedLineView_Example-dummy.m │ │ ├── Pods-DottedLineView_Example-frameworks.sh │ │ ├── Pods-DottedLineView_Example-resources.sh │ │ ├── Pods-DottedLineView_Example-umbrella.h │ │ ├── Pods-DottedLineView_Example.debug.xcconfig │ │ ├── Pods-DottedLineView_Example.modulemap │ │ └── Pods-DottedLineView_Example.release.xcconfig │ │ └── Pods-DottedLineView_Tests │ │ ├── Info.plist │ │ ├── Pods-DottedLineView_Tests-acknowledgements.markdown │ │ ├── Pods-DottedLineView_Tests-acknowledgements.plist │ │ ├── Pods-DottedLineView_Tests-dummy.m │ │ ├── Pods-DottedLineView_Tests-frameworks.sh │ │ ├── Pods-DottedLineView_Tests-resources.sh │ │ ├── Pods-DottedLineView_Tests-umbrella.h │ │ ├── Pods-DottedLineView_Tests.debug.xcconfig │ │ ├── Pods-DottedLineView_Tests.modulemap │ │ └── Pods-DottedLineView_Tests.release.xcconfig └── Tests │ ├── Info.plist │ └── Tests.swift ├── LICENSE ├── README.md ├── Screenshot ├── interfacebuilder1.png ├── interfacebuilder2.png ├── interfacebuilder3.png └── screenshot.png └── _Pods.xcodeproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STAR-ZERO/DottedLineView/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STAR-ZERO/DottedLineView/HEAD/.travis.yml -------------------------------------------------------------------------------- /DottedLineView.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STAR-ZERO/DottedLineView/HEAD/DottedLineView.podspec -------------------------------------------------------------------------------- /DottedLineView/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DottedLineView/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DottedLineView/Classes/DottedLineView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STAR-ZERO/DottedLineView/HEAD/DottedLineView/Classes/DottedLineView.swift -------------------------------------------------------------------------------- /Example/DottedLineView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STAR-ZERO/DottedLineView/HEAD/Example/DottedLineView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/DottedLineView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STAR-ZERO/DottedLineView/HEAD/Example/DottedLineView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/DottedLineView.xcodeproj/xcshareddata/xcschemes/DottedLineView-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STAR-ZERO/DottedLineView/HEAD/Example/DottedLineView.xcodeproj/xcshareddata/xcschemes/DottedLineView-Example.xcscheme -------------------------------------------------------------------------------- /Example/DottedLineView.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STAR-ZERO/DottedLineView/HEAD/Example/DottedLineView.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/DottedLineView/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STAR-ZERO/DottedLineView/HEAD/Example/DottedLineView/AppDelegate.swift -------------------------------------------------------------------------------- /Example/DottedLineView/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STAR-ZERO/DottedLineView/HEAD/Example/DottedLineView/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/DottedLineView/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STAR-ZERO/DottedLineView/HEAD/Example/DottedLineView/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/DottedLineView/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STAR-ZERO/DottedLineView/HEAD/Example/DottedLineView/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/DottedLineView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STAR-ZERO/DottedLineView/HEAD/Example/DottedLineView/Info.plist -------------------------------------------------------------------------------- /Example/DottedLineView/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STAR-ZERO/DottedLineView/HEAD/Example/DottedLineView/ViewController.swift -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STAR-ZERO/DottedLineView/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STAR-ZERO/DottedLineView/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/DottedLineView.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STAR-ZERO/DottedLineView/HEAD/Example/Pods/Local Podspecs/DottedLineView.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STAR-ZERO/DottedLineView/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STAR-ZERO/DottedLineView/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/DottedLineView/DottedLineView-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STAR-ZERO/DottedLineView/HEAD/Example/Pods/Target Support Files/DottedLineView/DottedLineView-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/DottedLineView/DottedLineView-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STAR-ZERO/DottedLineView/HEAD/Example/Pods/Target Support Files/DottedLineView/DottedLineView-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/DottedLineView/DottedLineView-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STAR-ZERO/DottedLineView/HEAD/Example/Pods/Target Support Files/DottedLineView/DottedLineView-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/DottedLineView/DottedLineView.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STAR-ZERO/DottedLineView/HEAD/Example/Pods/Target Support Files/DottedLineView/DottedLineView.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/DottedLineView/DottedLineView.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STAR-ZERO/DottedLineView/HEAD/Example/Pods/Target Support Files/DottedLineView/DottedLineView.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/DottedLineView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STAR-ZERO/DottedLineView/HEAD/Example/Pods/Target Support Files/DottedLineView/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DottedLineView_Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STAR-ZERO/DottedLineView/HEAD/Example/Pods/Target Support Files/Pods-DottedLineView_Example/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DottedLineView_Example/Pods-DottedLineView_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STAR-ZERO/DottedLineView/HEAD/Example/Pods/Target Support Files/Pods-DottedLineView_Example/Pods-DottedLineView_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DottedLineView_Example/Pods-DottedLineView_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STAR-ZERO/DottedLineView/HEAD/Example/Pods/Target Support Files/Pods-DottedLineView_Example/Pods-DottedLineView_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DottedLineView_Example/Pods-DottedLineView_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STAR-ZERO/DottedLineView/HEAD/Example/Pods/Target Support Files/Pods-DottedLineView_Example/Pods-DottedLineView_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DottedLineView_Example/Pods-DottedLineView_Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STAR-ZERO/DottedLineView/HEAD/Example/Pods/Target Support Files/Pods-DottedLineView_Example/Pods-DottedLineView_Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DottedLineView_Example/Pods-DottedLineView_Example-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STAR-ZERO/DottedLineView/HEAD/Example/Pods/Target Support Files/Pods-DottedLineView_Example/Pods-DottedLineView_Example-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DottedLineView_Example/Pods-DottedLineView_Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STAR-ZERO/DottedLineView/HEAD/Example/Pods/Target Support Files/Pods-DottedLineView_Example/Pods-DottedLineView_Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DottedLineView_Example/Pods-DottedLineView_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STAR-ZERO/DottedLineView/HEAD/Example/Pods/Target Support Files/Pods-DottedLineView_Example/Pods-DottedLineView_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DottedLineView_Example/Pods-DottedLineView_Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STAR-ZERO/DottedLineView/HEAD/Example/Pods/Target Support Files/Pods-DottedLineView_Example/Pods-DottedLineView_Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DottedLineView_Example/Pods-DottedLineView_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STAR-ZERO/DottedLineView/HEAD/Example/Pods/Target Support Files/Pods-DottedLineView_Example/Pods-DottedLineView_Example.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DottedLineView_Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STAR-ZERO/DottedLineView/HEAD/Example/Pods/Target Support Files/Pods-DottedLineView_Tests/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DottedLineView_Tests/Pods-DottedLineView_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STAR-ZERO/DottedLineView/HEAD/Example/Pods/Target Support Files/Pods-DottedLineView_Tests/Pods-DottedLineView_Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DottedLineView_Tests/Pods-DottedLineView_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STAR-ZERO/DottedLineView/HEAD/Example/Pods/Target Support Files/Pods-DottedLineView_Tests/Pods-DottedLineView_Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DottedLineView_Tests/Pods-DottedLineView_Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STAR-ZERO/DottedLineView/HEAD/Example/Pods/Target Support Files/Pods-DottedLineView_Tests/Pods-DottedLineView_Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DottedLineView_Tests/Pods-DottedLineView_Tests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STAR-ZERO/DottedLineView/HEAD/Example/Pods/Target Support Files/Pods-DottedLineView_Tests/Pods-DottedLineView_Tests-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DottedLineView_Tests/Pods-DottedLineView_Tests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STAR-ZERO/DottedLineView/HEAD/Example/Pods/Target Support Files/Pods-DottedLineView_Tests/Pods-DottedLineView_Tests-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DottedLineView_Tests/Pods-DottedLineView_Tests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STAR-ZERO/DottedLineView/HEAD/Example/Pods/Target Support Files/Pods-DottedLineView_Tests/Pods-DottedLineView_Tests-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DottedLineView_Tests/Pods-DottedLineView_Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STAR-ZERO/DottedLineView/HEAD/Example/Pods/Target Support Files/Pods-DottedLineView_Tests/Pods-DottedLineView_Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DottedLineView_Tests/Pods-DottedLineView_Tests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STAR-ZERO/DottedLineView/HEAD/Example/Pods/Target Support Files/Pods-DottedLineView_Tests/Pods-DottedLineView_Tests.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DottedLineView_Tests/Pods-DottedLineView_Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STAR-ZERO/DottedLineView/HEAD/Example/Pods/Target Support Files/Pods-DottedLineView_Tests/Pods-DottedLineView_Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STAR-ZERO/DottedLineView/HEAD/Example/Tests/Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STAR-ZERO/DottedLineView/HEAD/Example/Tests/Tests.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STAR-ZERO/DottedLineView/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STAR-ZERO/DottedLineView/HEAD/README.md -------------------------------------------------------------------------------- /Screenshot/interfacebuilder1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STAR-ZERO/DottedLineView/HEAD/Screenshot/interfacebuilder1.png -------------------------------------------------------------------------------- /Screenshot/interfacebuilder2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STAR-ZERO/DottedLineView/HEAD/Screenshot/interfacebuilder2.png -------------------------------------------------------------------------------- /Screenshot/interfacebuilder3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STAR-ZERO/DottedLineView/HEAD/Screenshot/interfacebuilder3.png -------------------------------------------------------------------------------- /Screenshot/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STAR-ZERO/DottedLineView/HEAD/Screenshot/screenshot.png -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------