├── Demo └── PinCodeView.gif ├── LICENSE.md ├── PinCodeView.podspec ├── PinCodeView.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcuserdata │ └── ariel.xcuserdatad │ └── xcschemes │ ├── PinCodeView.xcscheme │ └── xcschememanagement.plist ├── PinCodeViewDemo ├── .gitignore ├── PinCodeView.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcuserdata │ │ └── ariel.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ ├── PinCodeView.xcscheme │ │ └── xcschememanagement.plist ├── PinCodeView.xcworkspace │ └── contents.xcworkspacedata ├── PinCodeView │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── PinCodeDigitSquareView.swift │ └── ViewController.swift ├── Podfile └── Podfile.lock ├── README.md └── Source ├── PinCodeView ├── Info.plist ├── PinCodeDigitView.swift ├── PinCodeSeparatorView.swift ├── PinCodeView.h ├── PinCodeView.swift └── PinCodeViewDelegate.swift └── RxSwift └── PinCodeView+Rx.swift /Demo/PinCodeView.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arielpollack/PinCodeView/HEAD/Demo/PinCodeView.gif -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arielpollack/PinCodeView/HEAD/LICENSE.md -------------------------------------------------------------------------------- /PinCodeView.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arielpollack/PinCodeView/HEAD/PinCodeView.podspec -------------------------------------------------------------------------------- /PinCodeView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arielpollack/PinCodeView/HEAD/PinCodeView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /PinCodeView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arielpollack/PinCodeView/HEAD/PinCodeView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /PinCodeView.xcodeproj/xcuserdata/ariel.xcuserdatad/xcschemes/PinCodeView.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arielpollack/PinCodeView/HEAD/PinCodeView.xcodeproj/xcuserdata/ariel.xcuserdatad/xcschemes/PinCodeView.xcscheme -------------------------------------------------------------------------------- /PinCodeView.xcodeproj/xcuserdata/ariel.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arielpollack/PinCodeView/HEAD/PinCodeView.xcodeproj/xcuserdata/ariel.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /PinCodeViewDemo/.gitignore: -------------------------------------------------------------------------------- 1 | Pods 2 | -------------------------------------------------------------------------------- /PinCodeViewDemo/PinCodeView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arielpollack/PinCodeView/HEAD/PinCodeViewDemo/PinCodeView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /PinCodeViewDemo/PinCodeView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arielpollack/PinCodeView/HEAD/PinCodeViewDemo/PinCodeView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /PinCodeViewDemo/PinCodeView.xcodeproj/xcuserdata/ariel.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arielpollack/PinCodeView/HEAD/PinCodeViewDemo/PinCodeView.xcodeproj/xcuserdata/ariel.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /PinCodeViewDemo/PinCodeView.xcodeproj/xcuserdata/ariel.xcuserdatad/xcschemes/PinCodeView.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arielpollack/PinCodeView/HEAD/PinCodeViewDemo/PinCodeView.xcodeproj/xcuserdata/ariel.xcuserdatad/xcschemes/PinCodeView.xcscheme -------------------------------------------------------------------------------- /PinCodeViewDemo/PinCodeView.xcodeproj/xcuserdata/ariel.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arielpollack/PinCodeView/HEAD/PinCodeViewDemo/PinCodeView.xcodeproj/xcuserdata/ariel.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /PinCodeViewDemo/PinCodeView.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arielpollack/PinCodeView/HEAD/PinCodeViewDemo/PinCodeView.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /PinCodeViewDemo/PinCodeView/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arielpollack/PinCodeView/HEAD/PinCodeViewDemo/PinCodeView/AppDelegate.swift -------------------------------------------------------------------------------- /PinCodeViewDemo/PinCodeView/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arielpollack/PinCodeView/HEAD/PinCodeViewDemo/PinCodeView/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /PinCodeViewDemo/PinCodeView/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arielpollack/PinCodeView/HEAD/PinCodeViewDemo/PinCodeView/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /PinCodeViewDemo/PinCodeView/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arielpollack/PinCodeView/HEAD/PinCodeViewDemo/PinCodeView/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /PinCodeViewDemo/PinCodeView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arielpollack/PinCodeView/HEAD/PinCodeViewDemo/PinCodeView/Info.plist -------------------------------------------------------------------------------- /PinCodeViewDemo/PinCodeView/PinCodeDigitSquareView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arielpollack/PinCodeView/HEAD/PinCodeViewDemo/PinCodeView/PinCodeDigitSquareView.swift -------------------------------------------------------------------------------- /PinCodeViewDemo/PinCodeView/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arielpollack/PinCodeView/HEAD/PinCodeViewDemo/PinCodeView/ViewController.swift -------------------------------------------------------------------------------- /PinCodeViewDemo/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arielpollack/PinCodeView/HEAD/PinCodeViewDemo/Podfile -------------------------------------------------------------------------------- /PinCodeViewDemo/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arielpollack/PinCodeView/HEAD/PinCodeViewDemo/Podfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arielpollack/PinCodeView/HEAD/README.md -------------------------------------------------------------------------------- /Source/PinCodeView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arielpollack/PinCodeView/HEAD/Source/PinCodeView/Info.plist -------------------------------------------------------------------------------- /Source/PinCodeView/PinCodeDigitView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arielpollack/PinCodeView/HEAD/Source/PinCodeView/PinCodeDigitView.swift -------------------------------------------------------------------------------- /Source/PinCodeView/PinCodeSeparatorView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arielpollack/PinCodeView/HEAD/Source/PinCodeView/PinCodeSeparatorView.swift -------------------------------------------------------------------------------- /Source/PinCodeView/PinCodeView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arielpollack/PinCodeView/HEAD/Source/PinCodeView/PinCodeView.h -------------------------------------------------------------------------------- /Source/PinCodeView/PinCodeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arielpollack/PinCodeView/HEAD/Source/PinCodeView/PinCodeView.swift -------------------------------------------------------------------------------- /Source/PinCodeView/PinCodeViewDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arielpollack/PinCodeView/HEAD/Source/PinCodeView/PinCodeViewDelegate.swift -------------------------------------------------------------------------------- /Source/RxSwift/PinCodeView+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arielpollack/PinCodeView/HEAD/Source/RxSwift/PinCodeView+Rx.swift --------------------------------------------------------------------------------