├── BDPassCodeView ├── BDPassCodeView.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── Bhaskar.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── Bhaskar.xcuserdatad │ │ └── xcschemes │ │ ├── BDPassCodeView.xcscheme │ │ └── xcschememanagement.plist ├── BDPassCodeView │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── BDPassCode │ │ ├── BDPassCodeView.h │ │ ├── BDPassCodeView.m │ │ ├── BDPassCodeView.xib │ │ └── delete.png │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ ├── bg.png │ └── main.m └── BDPassCodeViewUITests │ ├── BDPassCodeViewUITests.m │ └── Info.plist ├── LICENSE ├── README.md └── ScreenShots ├── 1.png ├── 2.png ├── 3.png └── 4.png /BDPassCodeView/BDPassCodeView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskarjyotidas/BDPassCodeView/HEAD/BDPassCodeView/BDPassCodeView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /BDPassCodeView/BDPassCodeView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskarjyotidas/BDPassCodeView/HEAD/BDPassCodeView/BDPassCodeView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /BDPassCodeView/BDPassCodeView.xcodeproj/project.xcworkspace/xcuserdata/Bhaskar.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskarjyotidas/BDPassCodeView/HEAD/BDPassCodeView/BDPassCodeView.xcodeproj/project.xcworkspace/xcuserdata/Bhaskar.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /BDPassCodeView/BDPassCodeView.xcodeproj/xcuserdata/Bhaskar.xcuserdatad/xcschemes/BDPassCodeView.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskarjyotidas/BDPassCodeView/HEAD/BDPassCodeView/BDPassCodeView.xcodeproj/xcuserdata/Bhaskar.xcuserdatad/xcschemes/BDPassCodeView.xcscheme -------------------------------------------------------------------------------- /BDPassCodeView/BDPassCodeView.xcodeproj/xcuserdata/Bhaskar.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskarjyotidas/BDPassCodeView/HEAD/BDPassCodeView/BDPassCodeView.xcodeproj/xcuserdata/Bhaskar.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /BDPassCodeView/BDPassCodeView/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskarjyotidas/BDPassCodeView/HEAD/BDPassCodeView/BDPassCodeView/AppDelegate.h -------------------------------------------------------------------------------- /BDPassCodeView/BDPassCodeView/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskarjyotidas/BDPassCodeView/HEAD/BDPassCodeView/BDPassCodeView/AppDelegate.m -------------------------------------------------------------------------------- /BDPassCodeView/BDPassCodeView/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskarjyotidas/BDPassCodeView/HEAD/BDPassCodeView/BDPassCodeView/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /BDPassCodeView/BDPassCodeView/BDPassCode/BDPassCodeView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskarjyotidas/BDPassCodeView/HEAD/BDPassCodeView/BDPassCodeView/BDPassCode/BDPassCodeView.h -------------------------------------------------------------------------------- /BDPassCodeView/BDPassCodeView/BDPassCode/BDPassCodeView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskarjyotidas/BDPassCodeView/HEAD/BDPassCodeView/BDPassCodeView/BDPassCode/BDPassCodeView.m -------------------------------------------------------------------------------- /BDPassCodeView/BDPassCodeView/BDPassCode/BDPassCodeView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskarjyotidas/BDPassCodeView/HEAD/BDPassCodeView/BDPassCodeView/BDPassCode/BDPassCodeView.xib -------------------------------------------------------------------------------- /BDPassCodeView/BDPassCodeView/BDPassCode/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskarjyotidas/BDPassCodeView/HEAD/BDPassCodeView/BDPassCodeView/BDPassCode/delete.png -------------------------------------------------------------------------------- /BDPassCodeView/BDPassCodeView/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskarjyotidas/BDPassCodeView/HEAD/BDPassCodeView/BDPassCodeView/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /BDPassCodeView/BDPassCodeView/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskarjyotidas/BDPassCodeView/HEAD/BDPassCodeView/BDPassCodeView/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /BDPassCodeView/BDPassCodeView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskarjyotidas/BDPassCodeView/HEAD/BDPassCodeView/BDPassCodeView/Info.plist -------------------------------------------------------------------------------- /BDPassCodeView/BDPassCodeView/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskarjyotidas/BDPassCodeView/HEAD/BDPassCodeView/BDPassCodeView/ViewController.h -------------------------------------------------------------------------------- /BDPassCodeView/BDPassCodeView/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskarjyotidas/BDPassCodeView/HEAD/BDPassCodeView/BDPassCodeView/ViewController.m -------------------------------------------------------------------------------- /BDPassCodeView/BDPassCodeView/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskarjyotidas/BDPassCodeView/HEAD/BDPassCodeView/BDPassCodeView/bg.png -------------------------------------------------------------------------------- /BDPassCodeView/BDPassCodeView/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskarjyotidas/BDPassCodeView/HEAD/BDPassCodeView/BDPassCodeView/main.m -------------------------------------------------------------------------------- /BDPassCodeView/BDPassCodeViewUITests/BDPassCodeViewUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskarjyotidas/BDPassCodeView/HEAD/BDPassCodeView/BDPassCodeViewUITests/BDPassCodeViewUITests.m -------------------------------------------------------------------------------- /BDPassCodeView/BDPassCodeViewUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskarjyotidas/BDPassCodeView/HEAD/BDPassCodeView/BDPassCodeViewUITests/Info.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskarjyotidas/BDPassCodeView/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskarjyotidas/BDPassCodeView/HEAD/README.md -------------------------------------------------------------------------------- /ScreenShots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskarjyotidas/BDPassCodeView/HEAD/ScreenShots/1.png -------------------------------------------------------------------------------- /ScreenShots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskarjyotidas/BDPassCodeView/HEAD/ScreenShots/2.png -------------------------------------------------------------------------------- /ScreenShots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskarjyotidas/BDPassCodeView/HEAD/ScreenShots/3.png -------------------------------------------------------------------------------- /ScreenShots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskarjyotidas/BDPassCodeView/HEAD/ScreenShots/4.png --------------------------------------------------------------------------------