├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── STQRCodeController.podspec ├── STQRCodeController.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ └── STQRCodeController.xcscheme ├── STQRCodeController.xcworkspace └── contents.xcworkspacedata ├── STQRCodeController ├── Info.plist ├── NSBundle+STQRCodeController.h ├── NSBundle+STQRCodeController.m ├── STQRCodeAlert.h ├── STQRCodeAlert.m ├── STQRCodeConst.h ├── STQRCodeConst.m ├── STQRCodeController.bundle │ ├── st_lightNormal@2x.png │ ├── st_lightSelect@2x.png │ ├── st_noticeMusic.wav │ ├── st_scanBackground@2x.png │ └── st_scanLine@2x.png ├── STQRCodeController.h ├── STQRCodeController.m ├── STQRCodeReaderView.h └── STQRCodeReaderView.m └── STQRCodeControllerDemo ├── STQRCodeControllerDemo.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata └── STQRCodeControllerDemo ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets └── AppIcon.appiconset │ └── Contents.json ├── Base.lproj └── LaunchScreen.storyboard ├── Info.plist ├── TestController.h ├── TestController.m └── main.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szlsay/STQRCodeController/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szlsay/STQRCodeController/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szlsay/STQRCodeController/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szlsay/STQRCodeController/HEAD/README.md -------------------------------------------------------------------------------- /STQRCodeController.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szlsay/STQRCodeController/HEAD/STQRCodeController.podspec -------------------------------------------------------------------------------- /STQRCodeController.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szlsay/STQRCodeController/HEAD/STQRCodeController.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /STQRCodeController.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szlsay/STQRCodeController/HEAD/STQRCodeController.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /STQRCodeController.xcodeproj/xcshareddata/xcschemes/STQRCodeController.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szlsay/STQRCodeController/HEAD/STQRCodeController.xcodeproj/xcshareddata/xcschemes/STQRCodeController.xcscheme -------------------------------------------------------------------------------- /STQRCodeController.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szlsay/STQRCodeController/HEAD/STQRCodeController.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /STQRCodeController/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szlsay/STQRCodeController/HEAD/STQRCodeController/Info.plist -------------------------------------------------------------------------------- /STQRCodeController/NSBundle+STQRCodeController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szlsay/STQRCodeController/HEAD/STQRCodeController/NSBundle+STQRCodeController.h -------------------------------------------------------------------------------- /STQRCodeController/NSBundle+STQRCodeController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szlsay/STQRCodeController/HEAD/STQRCodeController/NSBundle+STQRCodeController.m -------------------------------------------------------------------------------- /STQRCodeController/STQRCodeAlert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szlsay/STQRCodeController/HEAD/STQRCodeController/STQRCodeAlert.h -------------------------------------------------------------------------------- /STQRCodeController/STQRCodeAlert.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szlsay/STQRCodeController/HEAD/STQRCodeController/STQRCodeAlert.m -------------------------------------------------------------------------------- /STQRCodeController/STQRCodeConst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szlsay/STQRCodeController/HEAD/STQRCodeController/STQRCodeConst.h -------------------------------------------------------------------------------- /STQRCodeController/STQRCodeConst.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szlsay/STQRCodeController/HEAD/STQRCodeController/STQRCodeConst.m -------------------------------------------------------------------------------- /STQRCodeController/STQRCodeController.bundle/st_lightNormal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szlsay/STQRCodeController/HEAD/STQRCodeController/STQRCodeController.bundle/st_lightNormal@2x.png -------------------------------------------------------------------------------- /STQRCodeController/STQRCodeController.bundle/st_lightSelect@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szlsay/STQRCodeController/HEAD/STQRCodeController/STQRCodeController.bundle/st_lightSelect@2x.png -------------------------------------------------------------------------------- /STQRCodeController/STQRCodeController.bundle/st_noticeMusic.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szlsay/STQRCodeController/HEAD/STQRCodeController/STQRCodeController.bundle/st_noticeMusic.wav -------------------------------------------------------------------------------- /STQRCodeController/STQRCodeController.bundle/st_scanBackground@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szlsay/STQRCodeController/HEAD/STQRCodeController/STQRCodeController.bundle/st_scanBackground@2x.png -------------------------------------------------------------------------------- /STQRCodeController/STQRCodeController.bundle/st_scanLine@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szlsay/STQRCodeController/HEAD/STQRCodeController/STQRCodeController.bundle/st_scanLine@2x.png -------------------------------------------------------------------------------- /STQRCodeController/STQRCodeController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szlsay/STQRCodeController/HEAD/STQRCodeController/STQRCodeController.h -------------------------------------------------------------------------------- /STQRCodeController/STQRCodeController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szlsay/STQRCodeController/HEAD/STQRCodeController/STQRCodeController.m -------------------------------------------------------------------------------- /STQRCodeController/STQRCodeReaderView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szlsay/STQRCodeController/HEAD/STQRCodeController/STQRCodeReaderView.h -------------------------------------------------------------------------------- /STQRCodeController/STQRCodeReaderView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szlsay/STQRCodeController/HEAD/STQRCodeController/STQRCodeReaderView.m -------------------------------------------------------------------------------- /STQRCodeControllerDemo/STQRCodeControllerDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szlsay/STQRCodeController/HEAD/STQRCodeControllerDemo/STQRCodeControllerDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /STQRCodeControllerDemo/STQRCodeControllerDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szlsay/STQRCodeController/HEAD/STQRCodeControllerDemo/STQRCodeControllerDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /STQRCodeControllerDemo/STQRCodeControllerDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szlsay/STQRCodeController/HEAD/STQRCodeControllerDemo/STQRCodeControllerDemo/AppDelegate.h -------------------------------------------------------------------------------- /STQRCodeControllerDemo/STQRCodeControllerDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szlsay/STQRCodeController/HEAD/STQRCodeControllerDemo/STQRCodeControllerDemo/AppDelegate.m -------------------------------------------------------------------------------- /STQRCodeControllerDemo/STQRCodeControllerDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szlsay/STQRCodeController/HEAD/STQRCodeControllerDemo/STQRCodeControllerDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /STQRCodeControllerDemo/STQRCodeControllerDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szlsay/STQRCodeController/HEAD/STQRCodeControllerDemo/STQRCodeControllerDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /STQRCodeControllerDemo/STQRCodeControllerDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szlsay/STQRCodeController/HEAD/STQRCodeControllerDemo/STQRCodeControllerDemo/Info.plist -------------------------------------------------------------------------------- /STQRCodeControllerDemo/STQRCodeControllerDemo/TestController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szlsay/STQRCodeController/HEAD/STQRCodeControllerDemo/STQRCodeControllerDemo/TestController.h -------------------------------------------------------------------------------- /STQRCodeControllerDemo/STQRCodeControllerDemo/TestController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szlsay/STQRCodeController/HEAD/STQRCodeControllerDemo/STQRCodeControllerDemo/TestController.m -------------------------------------------------------------------------------- /STQRCodeControllerDemo/STQRCodeControllerDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szlsay/STQRCodeController/HEAD/STQRCodeControllerDemo/STQRCodeControllerDemo/main.m --------------------------------------------------------------------------------