├── .gitignore ├── JhtVerificationCodeBox.podspec ├── JhtVerificationCodeBox_SDK └── JhtVerificationCodeView.framework │ ├── Headers │ └── JhtVerificationCodeView.h │ ├── Info.plist │ ├── JhtVerificationCodeView │ └── Modules │ └── module.modulemap ├── LICENSE ├── README.md ├── ReadMEImages └── Gif │ └── VerificationCodeView.gif ├── VerificationCodeBox.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcuserdata │ └── Jht.xcuserdatad │ └── xcschemes │ ├── VerificationCodeBox.xcscheme │ └── xcschememanagement.plist └── VerificationCodeBox ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets └── AppIcon.appiconset │ ├── Contents.json │ ├── ios-template-120.png │ ├── ios-template-121.png │ ├── ios-template-180.png │ ├── ios-template-40.png │ ├── ios-template-58.png │ ├── ios-template-80.png │ └── ios-template-87.png ├── Base.lproj ├── LaunchScreen.storyboard └── Main.storyboard ├── Info.plist ├── ViewController.h ├── ViewController.m └── main.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinht/VerificationCodeBox/HEAD/.gitignore -------------------------------------------------------------------------------- /JhtVerificationCodeBox.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinht/VerificationCodeBox/HEAD/JhtVerificationCodeBox.podspec -------------------------------------------------------------------------------- /JhtVerificationCodeBox_SDK/JhtVerificationCodeView.framework/Headers/JhtVerificationCodeView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinht/VerificationCodeBox/HEAD/JhtVerificationCodeBox_SDK/JhtVerificationCodeView.framework/Headers/JhtVerificationCodeView.h -------------------------------------------------------------------------------- /JhtVerificationCodeBox_SDK/JhtVerificationCodeView.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinht/VerificationCodeBox/HEAD/JhtVerificationCodeBox_SDK/JhtVerificationCodeView.framework/Info.plist -------------------------------------------------------------------------------- /JhtVerificationCodeBox_SDK/JhtVerificationCodeView.framework/JhtVerificationCodeView: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinht/VerificationCodeBox/HEAD/JhtVerificationCodeBox_SDK/JhtVerificationCodeView.framework/JhtVerificationCodeView -------------------------------------------------------------------------------- /JhtVerificationCodeBox_SDK/JhtVerificationCodeView.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinht/VerificationCodeBox/HEAD/JhtVerificationCodeBox_SDK/JhtVerificationCodeView.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinht/VerificationCodeBox/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinht/VerificationCodeBox/HEAD/README.md -------------------------------------------------------------------------------- /ReadMEImages/Gif/VerificationCodeView.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinht/VerificationCodeBox/HEAD/ReadMEImages/Gif/VerificationCodeView.gif -------------------------------------------------------------------------------- /VerificationCodeBox.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinht/VerificationCodeBox/HEAD/VerificationCodeBox.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /VerificationCodeBox.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinht/VerificationCodeBox/HEAD/VerificationCodeBox.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /VerificationCodeBox.xcodeproj/xcuserdata/Jht.xcuserdatad/xcschemes/VerificationCodeBox.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinht/VerificationCodeBox/HEAD/VerificationCodeBox.xcodeproj/xcuserdata/Jht.xcuserdatad/xcschemes/VerificationCodeBox.xcscheme -------------------------------------------------------------------------------- /VerificationCodeBox.xcodeproj/xcuserdata/Jht.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinht/VerificationCodeBox/HEAD/VerificationCodeBox.xcodeproj/xcuserdata/Jht.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /VerificationCodeBox/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinht/VerificationCodeBox/HEAD/VerificationCodeBox/AppDelegate.h -------------------------------------------------------------------------------- /VerificationCodeBox/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinht/VerificationCodeBox/HEAD/VerificationCodeBox/AppDelegate.m -------------------------------------------------------------------------------- /VerificationCodeBox/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinht/VerificationCodeBox/HEAD/VerificationCodeBox/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /VerificationCodeBox/Assets.xcassets/AppIcon.appiconset/ios-template-120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinht/VerificationCodeBox/HEAD/VerificationCodeBox/Assets.xcassets/AppIcon.appiconset/ios-template-120.png -------------------------------------------------------------------------------- /VerificationCodeBox/Assets.xcassets/AppIcon.appiconset/ios-template-121.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinht/VerificationCodeBox/HEAD/VerificationCodeBox/Assets.xcassets/AppIcon.appiconset/ios-template-121.png -------------------------------------------------------------------------------- /VerificationCodeBox/Assets.xcassets/AppIcon.appiconset/ios-template-180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinht/VerificationCodeBox/HEAD/VerificationCodeBox/Assets.xcassets/AppIcon.appiconset/ios-template-180.png -------------------------------------------------------------------------------- /VerificationCodeBox/Assets.xcassets/AppIcon.appiconset/ios-template-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinht/VerificationCodeBox/HEAD/VerificationCodeBox/Assets.xcassets/AppIcon.appiconset/ios-template-40.png -------------------------------------------------------------------------------- /VerificationCodeBox/Assets.xcassets/AppIcon.appiconset/ios-template-58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinht/VerificationCodeBox/HEAD/VerificationCodeBox/Assets.xcassets/AppIcon.appiconset/ios-template-58.png -------------------------------------------------------------------------------- /VerificationCodeBox/Assets.xcassets/AppIcon.appiconset/ios-template-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinht/VerificationCodeBox/HEAD/VerificationCodeBox/Assets.xcassets/AppIcon.appiconset/ios-template-80.png -------------------------------------------------------------------------------- /VerificationCodeBox/Assets.xcassets/AppIcon.appiconset/ios-template-87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinht/VerificationCodeBox/HEAD/VerificationCodeBox/Assets.xcassets/AppIcon.appiconset/ios-template-87.png -------------------------------------------------------------------------------- /VerificationCodeBox/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinht/VerificationCodeBox/HEAD/VerificationCodeBox/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /VerificationCodeBox/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinht/VerificationCodeBox/HEAD/VerificationCodeBox/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /VerificationCodeBox/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinht/VerificationCodeBox/HEAD/VerificationCodeBox/Info.plist -------------------------------------------------------------------------------- /VerificationCodeBox/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinht/VerificationCodeBox/HEAD/VerificationCodeBox/ViewController.h -------------------------------------------------------------------------------- /VerificationCodeBox/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinht/VerificationCodeBox/HEAD/VerificationCodeBox/ViewController.m -------------------------------------------------------------------------------- /VerificationCodeBox/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinht/VerificationCodeBox/HEAD/VerificationCodeBox/main.m --------------------------------------------------------------------------------