├── README.md ├── test.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── crazypoo.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── crazypoo.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── test.xcscheme │ └── xcschememanagement.plist ├── test ├── AppDelegate.h ├── AppDelegate.m ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard ├── GPLittlePassWordView.h ├── GPLittlePassWordView.m ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Info.plist ├── MJCircleLayer.h ├── MJCircleLayer.m ├── MJPasswordView.h ├── MJPasswordView.m ├── MJPathLayer.h ├── MJPathLayer.m ├── PooPassWordView.h ├── PooPassWordView.m ├── ViewController.h ├── ViewController.m ├── image_CodeSet@2x.png ├── image_CodeUnSet@2x.png ├── main.m ├── oooooooooooo.h └── oooooooooooo.m └── testTests ├── Info.plist └── testTests.m /README.md: -------------------------------------------------------------------------------- 1 | # LikeAlipayLockCodeView 2 | 好像是一个类似支付宝的手势密码demo,lol 3 | -------------------------------------------------------------------------------- /test.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazypoo/LikeAlipayLockCodeView/HEAD/test.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /test.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazypoo/LikeAlipayLockCodeView/HEAD/test.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /test.xcodeproj/project.xcworkspace/xcuserdata/crazypoo.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazypoo/LikeAlipayLockCodeView/HEAD/test.xcodeproj/project.xcworkspace/xcuserdata/crazypoo.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /test.xcodeproj/xcuserdata/crazypoo.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazypoo/LikeAlipayLockCodeView/HEAD/test.xcodeproj/xcuserdata/crazypoo.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /test.xcodeproj/xcuserdata/crazypoo.xcuserdatad/xcschemes/test.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazypoo/LikeAlipayLockCodeView/HEAD/test.xcodeproj/xcuserdata/crazypoo.xcuserdatad/xcschemes/test.xcscheme -------------------------------------------------------------------------------- /test.xcodeproj/xcuserdata/crazypoo.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazypoo/LikeAlipayLockCodeView/HEAD/test.xcodeproj/xcuserdata/crazypoo.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /test/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazypoo/LikeAlipayLockCodeView/HEAD/test/AppDelegate.h -------------------------------------------------------------------------------- /test/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazypoo/LikeAlipayLockCodeView/HEAD/test/AppDelegate.m -------------------------------------------------------------------------------- /test/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazypoo/LikeAlipayLockCodeView/HEAD/test/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /test/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazypoo/LikeAlipayLockCodeView/HEAD/test/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /test/GPLittlePassWordView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazypoo/LikeAlipayLockCodeView/HEAD/test/GPLittlePassWordView.h -------------------------------------------------------------------------------- /test/GPLittlePassWordView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazypoo/LikeAlipayLockCodeView/HEAD/test/GPLittlePassWordView.m -------------------------------------------------------------------------------- /test/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazypoo/LikeAlipayLockCodeView/HEAD/test/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /test/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazypoo/LikeAlipayLockCodeView/HEAD/test/Info.plist -------------------------------------------------------------------------------- /test/MJCircleLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazypoo/LikeAlipayLockCodeView/HEAD/test/MJCircleLayer.h -------------------------------------------------------------------------------- /test/MJCircleLayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazypoo/LikeAlipayLockCodeView/HEAD/test/MJCircleLayer.m -------------------------------------------------------------------------------- /test/MJPasswordView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazypoo/LikeAlipayLockCodeView/HEAD/test/MJPasswordView.h -------------------------------------------------------------------------------- /test/MJPasswordView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazypoo/LikeAlipayLockCodeView/HEAD/test/MJPasswordView.m -------------------------------------------------------------------------------- /test/MJPathLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazypoo/LikeAlipayLockCodeView/HEAD/test/MJPathLayer.h -------------------------------------------------------------------------------- /test/MJPathLayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazypoo/LikeAlipayLockCodeView/HEAD/test/MJPathLayer.m -------------------------------------------------------------------------------- /test/PooPassWordView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazypoo/LikeAlipayLockCodeView/HEAD/test/PooPassWordView.h -------------------------------------------------------------------------------- /test/PooPassWordView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazypoo/LikeAlipayLockCodeView/HEAD/test/PooPassWordView.m -------------------------------------------------------------------------------- /test/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazypoo/LikeAlipayLockCodeView/HEAD/test/ViewController.h -------------------------------------------------------------------------------- /test/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazypoo/LikeAlipayLockCodeView/HEAD/test/ViewController.m -------------------------------------------------------------------------------- /test/image_CodeSet@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazypoo/LikeAlipayLockCodeView/HEAD/test/image_CodeSet@2x.png -------------------------------------------------------------------------------- /test/image_CodeUnSet@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazypoo/LikeAlipayLockCodeView/HEAD/test/image_CodeUnSet@2x.png -------------------------------------------------------------------------------- /test/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazypoo/LikeAlipayLockCodeView/HEAD/test/main.m -------------------------------------------------------------------------------- /test/oooooooooooo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazypoo/LikeAlipayLockCodeView/HEAD/test/oooooooooooo.h -------------------------------------------------------------------------------- /test/oooooooooooo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazypoo/LikeAlipayLockCodeView/HEAD/test/oooooooooooo.m -------------------------------------------------------------------------------- /testTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazypoo/LikeAlipayLockCodeView/HEAD/testTests/Info.plist -------------------------------------------------------------------------------- /testTests/testTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazypoo/LikeAlipayLockCodeView/HEAD/testTests/testTests.m --------------------------------------------------------------------------------