├── .gitignore ├── .travis.yml ├── CBPinEntryView.podspec ├── CBPinEntryView ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ ├── CBPinEntryView.swift │ └── CBPinEntryViewDefaults.swift ├── Example ├── .DS_Store ├── CBPinEntryView.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── CBPinEntryView-Example.xcscheme ├── CBPinEntryView.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── CBPinEntryView │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ └── ViewController.swift ├── Podfile ├── Podfile.lock ├── Pods │ ├── Local Podspecs │ │ └── CBPinEntryView.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ └── Target Support Files │ │ ├── CBPinEntryView │ │ ├── CBPinEntryView-Info.plist │ │ ├── CBPinEntryView-dummy.m │ │ ├── CBPinEntryView-prefix.pch │ │ ├── CBPinEntryView-umbrella.h │ │ ├── CBPinEntryView.modulemap │ │ ├── CBPinEntryView.xcconfig │ │ └── Info.plist │ │ ├── Pods-CBPinEntryView_Example │ │ ├── Info.plist │ │ ├── Pods-CBPinEntryView_Example-Info.plist │ │ ├── Pods-CBPinEntryView_Example-acknowledgements.markdown │ │ ├── Pods-CBPinEntryView_Example-acknowledgements.plist │ │ ├── Pods-CBPinEntryView_Example-dummy.m │ │ ├── Pods-CBPinEntryView_Example-frameworks.sh │ │ ├── Pods-CBPinEntryView_Example-resources.sh │ │ ├── Pods-CBPinEntryView_Example-umbrella.h │ │ ├── Pods-CBPinEntryView_Example.debug.xcconfig │ │ ├── Pods-CBPinEntryView_Example.modulemap │ │ └── Pods-CBPinEntryView_Example.release.xcconfig │ │ └── Pods-CBPinEntryView_Tests │ │ ├── Info.plist │ │ ├── Pods-CBPinEntryView_Tests-Info.plist │ │ ├── Pods-CBPinEntryView_Tests-acknowledgements.markdown │ │ ├── Pods-CBPinEntryView_Tests-acknowledgements.plist │ │ ├── Pods-CBPinEntryView_Tests-dummy.m │ │ ├── Pods-CBPinEntryView_Tests-frameworks.sh │ │ ├── Pods-CBPinEntryView_Tests-resources.sh │ │ ├── Pods-CBPinEntryView_Tests-umbrella.h │ │ ├── Pods-CBPinEntryView_Tests.debug.xcconfig │ │ ├── Pods-CBPinEntryView_Tests.modulemap │ │ └── Pods-CBPinEntryView_Tests.release.xcconfig └── Tests │ ├── Info.plist │ └── Tests.swift ├── LICENSE ├── Package.swift ├── README.md ├── Sources └── CBPinEntryView │ ├── CBPinEntryView.swift │ ├── CBPinEntryViewDefaults.swift │ └── Extensions.swift └── _Pods.xcodeproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fawxy/CBPinEntryView/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fawxy/CBPinEntryView/HEAD/.travis.yml -------------------------------------------------------------------------------- /CBPinEntryView.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fawxy/CBPinEntryView/HEAD/CBPinEntryView.podspec -------------------------------------------------------------------------------- /CBPinEntryView/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CBPinEntryView/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CBPinEntryView/Classes/CBPinEntryView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fawxy/CBPinEntryView/HEAD/CBPinEntryView/Classes/CBPinEntryView.swift -------------------------------------------------------------------------------- /CBPinEntryView/Classes/CBPinEntryViewDefaults.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fawxy/CBPinEntryView/HEAD/CBPinEntryView/Classes/CBPinEntryViewDefaults.swift -------------------------------------------------------------------------------- /Example/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fawxy/CBPinEntryView/HEAD/Example/.DS_Store -------------------------------------------------------------------------------- /Example/CBPinEntryView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fawxy/CBPinEntryView/HEAD/Example/CBPinEntryView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/CBPinEntryView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fawxy/CBPinEntryView/HEAD/Example/CBPinEntryView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/CBPinEntryView.xcodeproj/xcshareddata/xcschemes/CBPinEntryView-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fawxy/CBPinEntryView/HEAD/Example/CBPinEntryView.xcodeproj/xcshareddata/xcschemes/CBPinEntryView-Example.xcscheme -------------------------------------------------------------------------------- /Example/CBPinEntryView.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fawxy/CBPinEntryView/HEAD/Example/CBPinEntryView.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/CBPinEntryView.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fawxy/CBPinEntryView/HEAD/Example/CBPinEntryView.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/CBPinEntryView/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fawxy/CBPinEntryView/HEAD/Example/CBPinEntryView/AppDelegate.swift -------------------------------------------------------------------------------- /Example/CBPinEntryView/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fawxy/CBPinEntryView/HEAD/Example/CBPinEntryView/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/CBPinEntryView/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fawxy/CBPinEntryView/HEAD/Example/CBPinEntryView/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/CBPinEntryView/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fawxy/CBPinEntryView/HEAD/Example/CBPinEntryView/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/CBPinEntryView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fawxy/CBPinEntryView/HEAD/Example/CBPinEntryView/Info.plist -------------------------------------------------------------------------------- /Example/CBPinEntryView/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fawxy/CBPinEntryView/HEAD/Example/CBPinEntryView/ViewController.swift -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fawxy/CBPinEntryView/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fawxy/CBPinEntryView/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/CBPinEntryView.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fawxy/CBPinEntryView/HEAD/Example/Pods/Local Podspecs/CBPinEntryView.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fawxy/CBPinEntryView/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fawxy/CBPinEntryView/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CBPinEntryView/CBPinEntryView-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fawxy/CBPinEntryView/HEAD/Example/Pods/Target Support Files/CBPinEntryView/CBPinEntryView-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CBPinEntryView/CBPinEntryView-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fawxy/CBPinEntryView/HEAD/Example/Pods/Target Support Files/CBPinEntryView/CBPinEntryView-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CBPinEntryView/CBPinEntryView-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fawxy/CBPinEntryView/HEAD/Example/Pods/Target Support Files/CBPinEntryView/CBPinEntryView-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CBPinEntryView/CBPinEntryView-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fawxy/CBPinEntryView/HEAD/Example/Pods/Target Support Files/CBPinEntryView/CBPinEntryView-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CBPinEntryView/CBPinEntryView.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fawxy/CBPinEntryView/HEAD/Example/Pods/Target Support Files/CBPinEntryView/CBPinEntryView.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CBPinEntryView/CBPinEntryView.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fawxy/CBPinEntryView/HEAD/Example/Pods/Target Support Files/CBPinEntryView/CBPinEntryView.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CBPinEntryView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fawxy/CBPinEntryView/HEAD/Example/Pods/Target Support Files/CBPinEntryView/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CBPinEntryView_Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fawxy/CBPinEntryView/HEAD/Example/Pods/Target Support Files/Pods-CBPinEntryView_Example/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CBPinEntryView_Example/Pods-CBPinEntryView_Example-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fawxy/CBPinEntryView/HEAD/Example/Pods/Target Support Files/Pods-CBPinEntryView_Example/Pods-CBPinEntryView_Example-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CBPinEntryView_Example/Pods-CBPinEntryView_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fawxy/CBPinEntryView/HEAD/Example/Pods/Target Support Files/Pods-CBPinEntryView_Example/Pods-CBPinEntryView_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CBPinEntryView_Example/Pods-CBPinEntryView_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fawxy/CBPinEntryView/HEAD/Example/Pods/Target Support Files/Pods-CBPinEntryView_Example/Pods-CBPinEntryView_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CBPinEntryView_Example/Pods-CBPinEntryView_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fawxy/CBPinEntryView/HEAD/Example/Pods/Target Support Files/Pods-CBPinEntryView_Example/Pods-CBPinEntryView_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CBPinEntryView_Example/Pods-CBPinEntryView_Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fawxy/CBPinEntryView/HEAD/Example/Pods/Target Support Files/Pods-CBPinEntryView_Example/Pods-CBPinEntryView_Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CBPinEntryView_Example/Pods-CBPinEntryView_Example-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fawxy/CBPinEntryView/HEAD/Example/Pods/Target Support Files/Pods-CBPinEntryView_Example/Pods-CBPinEntryView_Example-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CBPinEntryView_Example/Pods-CBPinEntryView_Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fawxy/CBPinEntryView/HEAD/Example/Pods/Target Support Files/Pods-CBPinEntryView_Example/Pods-CBPinEntryView_Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CBPinEntryView_Example/Pods-CBPinEntryView_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fawxy/CBPinEntryView/HEAD/Example/Pods/Target Support Files/Pods-CBPinEntryView_Example/Pods-CBPinEntryView_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CBPinEntryView_Example/Pods-CBPinEntryView_Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fawxy/CBPinEntryView/HEAD/Example/Pods/Target Support Files/Pods-CBPinEntryView_Example/Pods-CBPinEntryView_Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CBPinEntryView_Example/Pods-CBPinEntryView_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fawxy/CBPinEntryView/HEAD/Example/Pods/Target Support Files/Pods-CBPinEntryView_Example/Pods-CBPinEntryView_Example.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CBPinEntryView_Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fawxy/CBPinEntryView/HEAD/Example/Pods/Target Support Files/Pods-CBPinEntryView_Tests/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CBPinEntryView_Tests/Pods-CBPinEntryView_Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fawxy/CBPinEntryView/HEAD/Example/Pods/Target Support Files/Pods-CBPinEntryView_Tests/Pods-CBPinEntryView_Tests-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CBPinEntryView_Tests/Pods-CBPinEntryView_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fawxy/CBPinEntryView/HEAD/Example/Pods/Target Support Files/Pods-CBPinEntryView_Tests/Pods-CBPinEntryView_Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CBPinEntryView_Tests/Pods-CBPinEntryView_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fawxy/CBPinEntryView/HEAD/Example/Pods/Target Support Files/Pods-CBPinEntryView_Tests/Pods-CBPinEntryView_Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CBPinEntryView_Tests/Pods-CBPinEntryView_Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fawxy/CBPinEntryView/HEAD/Example/Pods/Target Support Files/Pods-CBPinEntryView_Tests/Pods-CBPinEntryView_Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CBPinEntryView_Tests/Pods-CBPinEntryView_Tests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fawxy/CBPinEntryView/HEAD/Example/Pods/Target Support Files/Pods-CBPinEntryView_Tests/Pods-CBPinEntryView_Tests-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CBPinEntryView_Tests/Pods-CBPinEntryView_Tests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fawxy/CBPinEntryView/HEAD/Example/Pods/Target Support Files/Pods-CBPinEntryView_Tests/Pods-CBPinEntryView_Tests-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CBPinEntryView_Tests/Pods-CBPinEntryView_Tests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fawxy/CBPinEntryView/HEAD/Example/Pods/Target Support Files/Pods-CBPinEntryView_Tests/Pods-CBPinEntryView_Tests-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CBPinEntryView_Tests/Pods-CBPinEntryView_Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fawxy/CBPinEntryView/HEAD/Example/Pods/Target Support Files/Pods-CBPinEntryView_Tests/Pods-CBPinEntryView_Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CBPinEntryView_Tests/Pods-CBPinEntryView_Tests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fawxy/CBPinEntryView/HEAD/Example/Pods/Target Support Files/Pods-CBPinEntryView_Tests/Pods-CBPinEntryView_Tests.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-CBPinEntryView_Tests/Pods-CBPinEntryView_Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fawxy/CBPinEntryView/HEAD/Example/Pods/Target Support Files/Pods-CBPinEntryView_Tests/Pods-CBPinEntryView_Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fawxy/CBPinEntryView/HEAD/Example/Tests/Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fawxy/CBPinEntryView/HEAD/Example/Tests/Tests.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fawxy/CBPinEntryView/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fawxy/CBPinEntryView/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fawxy/CBPinEntryView/HEAD/README.md -------------------------------------------------------------------------------- /Sources/CBPinEntryView/CBPinEntryView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fawxy/CBPinEntryView/HEAD/Sources/CBPinEntryView/CBPinEntryView.swift -------------------------------------------------------------------------------- /Sources/CBPinEntryView/CBPinEntryViewDefaults.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fawxy/CBPinEntryView/HEAD/Sources/CBPinEntryView/CBPinEntryViewDefaults.swift -------------------------------------------------------------------------------- /Sources/CBPinEntryView/Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fawxy/CBPinEntryView/HEAD/Sources/CBPinEntryView/Extensions.swift -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------