├── CHANGELOG ├── LICENSE ├── README.md ├── SCPinViewController.podspec ├── SCPinViewController.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── maxim.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── maxim.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── SCPinViewController.xcscheme │ └── xcschememanagement.plist ├── SCPinViewController ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── SCPinViewController │ ├── Appearance │ │ ├── SCPinAppearance.h │ │ └── SCPinAppearance.m │ ├── SCPinViewController.h │ ├── SCPinViewController.m │ ├── SCPinViewController.xib │ ├── View │ │ ├── PinButton │ │ │ ├── SCPinButton.h │ │ │ └── SCPinButton.m │ │ └── PinView │ │ │ ├── SCPinView.h │ │ │ └── SCPinView.m │ └── images │ │ ├── sc_img_delete.png │ │ ├── sc_img_delete@2x.png │ │ ├── sc_img_delete@3x.png │ │ ├── sc_img_touchid.png │ │ ├── sc_img_touchid@2x.png │ │ └── sc_img_touchid@3x.png ├── Supporting Files │ └── main.m ├── ViewController.h └── ViewController.m └── Screen.png /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SugarAndCandy/SCPinViewController/HEAD/CHANGELOG -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SugarAndCandy/SCPinViewController/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SugarAndCandy/SCPinViewController/HEAD/README.md -------------------------------------------------------------------------------- /SCPinViewController.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SugarAndCandy/SCPinViewController/HEAD/SCPinViewController.podspec -------------------------------------------------------------------------------- /SCPinViewController.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SugarAndCandy/SCPinViewController/HEAD/SCPinViewController.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SCPinViewController.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SugarAndCandy/SCPinViewController/HEAD/SCPinViewController.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SCPinViewController.xcodeproj/project.xcworkspace/xcuserdata/maxim.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SugarAndCandy/SCPinViewController/HEAD/SCPinViewController.xcodeproj/project.xcworkspace/xcuserdata/maxim.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /SCPinViewController.xcodeproj/xcuserdata/maxim.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SugarAndCandy/SCPinViewController/HEAD/SCPinViewController.xcodeproj/xcuserdata/maxim.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /SCPinViewController.xcodeproj/xcuserdata/maxim.xcuserdatad/xcschemes/SCPinViewController.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SugarAndCandy/SCPinViewController/HEAD/SCPinViewController.xcodeproj/xcuserdata/maxim.xcuserdatad/xcschemes/SCPinViewController.xcscheme -------------------------------------------------------------------------------- /SCPinViewController.xcodeproj/xcuserdata/maxim.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SugarAndCandy/SCPinViewController/HEAD/SCPinViewController.xcodeproj/xcuserdata/maxim.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /SCPinViewController/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SugarAndCandy/SCPinViewController/HEAD/SCPinViewController/AppDelegate.h -------------------------------------------------------------------------------- /SCPinViewController/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SugarAndCandy/SCPinViewController/HEAD/SCPinViewController/AppDelegate.m -------------------------------------------------------------------------------- /SCPinViewController/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SugarAndCandy/SCPinViewController/HEAD/SCPinViewController/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SCPinViewController/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SugarAndCandy/SCPinViewController/HEAD/SCPinViewController/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /SCPinViewController/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SugarAndCandy/SCPinViewController/HEAD/SCPinViewController/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /SCPinViewController/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SugarAndCandy/SCPinViewController/HEAD/SCPinViewController/Info.plist -------------------------------------------------------------------------------- /SCPinViewController/SCPinViewController/Appearance/SCPinAppearance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SugarAndCandy/SCPinViewController/HEAD/SCPinViewController/SCPinViewController/Appearance/SCPinAppearance.h -------------------------------------------------------------------------------- /SCPinViewController/SCPinViewController/Appearance/SCPinAppearance.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SugarAndCandy/SCPinViewController/HEAD/SCPinViewController/SCPinViewController/Appearance/SCPinAppearance.m -------------------------------------------------------------------------------- /SCPinViewController/SCPinViewController/SCPinViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SugarAndCandy/SCPinViewController/HEAD/SCPinViewController/SCPinViewController/SCPinViewController.h -------------------------------------------------------------------------------- /SCPinViewController/SCPinViewController/SCPinViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SugarAndCandy/SCPinViewController/HEAD/SCPinViewController/SCPinViewController/SCPinViewController.m -------------------------------------------------------------------------------- /SCPinViewController/SCPinViewController/SCPinViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SugarAndCandy/SCPinViewController/HEAD/SCPinViewController/SCPinViewController/SCPinViewController.xib -------------------------------------------------------------------------------- /SCPinViewController/SCPinViewController/View/PinButton/SCPinButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SugarAndCandy/SCPinViewController/HEAD/SCPinViewController/SCPinViewController/View/PinButton/SCPinButton.h -------------------------------------------------------------------------------- /SCPinViewController/SCPinViewController/View/PinButton/SCPinButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SugarAndCandy/SCPinViewController/HEAD/SCPinViewController/SCPinViewController/View/PinButton/SCPinButton.m -------------------------------------------------------------------------------- /SCPinViewController/SCPinViewController/View/PinView/SCPinView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SugarAndCandy/SCPinViewController/HEAD/SCPinViewController/SCPinViewController/View/PinView/SCPinView.h -------------------------------------------------------------------------------- /SCPinViewController/SCPinViewController/View/PinView/SCPinView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SugarAndCandy/SCPinViewController/HEAD/SCPinViewController/SCPinViewController/View/PinView/SCPinView.m -------------------------------------------------------------------------------- /SCPinViewController/SCPinViewController/images/sc_img_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SugarAndCandy/SCPinViewController/HEAD/SCPinViewController/SCPinViewController/images/sc_img_delete.png -------------------------------------------------------------------------------- /SCPinViewController/SCPinViewController/images/sc_img_delete@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SugarAndCandy/SCPinViewController/HEAD/SCPinViewController/SCPinViewController/images/sc_img_delete@2x.png -------------------------------------------------------------------------------- /SCPinViewController/SCPinViewController/images/sc_img_delete@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SugarAndCandy/SCPinViewController/HEAD/SCPinViewController/SCPinViewController/images/sc_img_delete@3x.png -------------------------------------------------------------------------------- /SCPinViewController/SCPinViewController/images/sc_img_touchid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SugarAndCandy/SCPinViewController/HEAD/SCPinViewController/SCPinViewController/images/sc_img_touchid.png -------------------------------------------------------------------------------- /SCPinViewController/SCPinViewController/images/sc_img_touchid@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SugarAndCandy/SCPinViewController/HEAD/SCPinViewController/SCPinViewController/images/sc_img_touchid@2x.png -------------------------------------------------------------------------------- /SCPinViewController/SCPinViewController/images/sc_img_touchid@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SugarAndCandy/SCPinViewController/HEAD/SCPinViewController/SCPinViewController/images/sc_img_touchid@3x.png -------------------------------------------------------------------------------- /SCPinViewController/Supporting Files/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SugarAndCandy/SCPinViewController/HEAD/SCPinViewController/Supporting Files/main.m -------------------------------------------------------------------------------- /SCPinViewController/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SugarAndCandy/SCPinViewController/HEAD/SCPinViewController/ViewController.h -------------------------------------------------------------------------------- /SCPinViewController/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SugarAndCandy/SCPinViewController/HEAD/SCPinViewController/ViewController.m -------------------------------------------------------------------------------- /Screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SugarAndCandy/SCPinViewController/HEAD/Screen.png --------------------------------------------------------------------------------