├── HCSystemicQRCodeDemo.gif ├── HCSystemicQRCodeDemo.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ ├── a51.xcuserdatad │ │ └── UserInterfaceState.xcuserstate │ │ └── caoyq.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ ├── a51.xcuserdatad │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ │ ├── HCSystemicQRCodeDemo.xcscheme │ │ └── xcschememanagement.plist │ └── caoyq.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── HCSystemicQRCodeDemo.xcscheme │ └── xcschememanagement.plist ├── HCSystemicQRCodeDemo ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── FirstViewController.h ├── FirstViewController.m ├── HCSystemicQRCode │ ├── HCCreateQRCode.h │ ├── HCCreateQRCode.m │ ├── HCHeader.h │ ├── HCScanQRViewController.h │ ├── HCScanQRViewController.m │ ├── Utils │ │ ├── UIFont+MyFont.h │ │ ├── UIFont+MyFont.m │ │ ├── UIView+Frame.h │ │ └── UIView+Frame.m │ ├── image.bundle │ │ ├── ring.wav │ │ ├── scanBackground@2x.png │ │ ├── scanBackground@3x.png │ │ ├── scanLine@2x.png │ │ ├── scanLine@3x.png │ │ ├── turn_off.png │ │ └── turn_on.png │ └── model │ │ ├── SystemFunctions.h │ │ └── SystemFunctions.m ├── Info.plist ├── ShowQRCodeViewController.h ├── ShowQRCodeViewController.m ├── ViewController.h ├── ViewController.m └── main.m ├── HCSystemicQRCodeDemoTests ├── HCSystemicQRCodeDemoTests.m └── Info.plist ├── HCSystemicQRCodeDemoUITests ├── HCSystemicQRCodeDemoUITests.m └── Info.plist └── README.md /HCSystemicQRCodeDemo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycao/ACSystemicQRCodeDemo/HEAD/HCSystemicQRCodeDemo.gif -------------------------------------------------------------------------------- /HCSystemicQRCodeDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycao/ACSystemicQRCodeDemo/HEAD/HCSystemicQRCodeDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /HCSystemicQRCodeDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycao/ACSystemicQRCodeDemo/HEAD/HCSystemicQRCodeDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /HCSystemicQRCodeDemo.xcodeproj/project.xcworkspace/xcuserdata/a51.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycao/ACSystemicQRCodeDemo/HEAD/HCSystemicQRCodeDemo.xcodeproj/project.xcworkspace/xcuserdata/a51.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /HCSystemicQRCodeDemo.xcodeproj/project.xcworkspace/xcuserdata/caoyq.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycao/ACSystemicQRCodeDemo/HEAD/HCSystemicQRCodeDemo.xcodeproj/project.xcworkspace/xcuserdata/caoyq.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /HCSystemicQRCodeDemo.xcodeproj/xcuserdata/a51.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycao/ACSystemicQRCodeDemo/HEAD/HCSystemicQRCodeDemo.xcodeproj/xcuserdata/a51.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /HCSystemicQRCodeDemo.xcodeproj/xcuserdata/a51.xcuserdatad/xcschemes/HCSystemicQRCodeDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycao/ACSystemicQRCodeDemo/HEAD/HCSystemicQRCodeDemo.xcodeproj/xcuserdata/a51.xcuserdatad/xcschemes/HCSystemicQRCodeDemo.xcscheme -------------------------------------------------------------------------------- /HCSystemicQRCodeDemo.xcodeproj/xcuserdata/a51.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycao/ACSystemicQRCodeDemo/HEAD/HCSystemicQRCodeDemo.xcodeproj/xcuserdata/a51.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /HCSystemicQRCodeDemo.xcodeproj/xcuserdata/caoyq.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycao/ACSystemicQRCodeDemo/HEAD/HCSystemicQRCodeDemo.xcodeproj/xcuserdata/caoyq.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /HCSystemicQRCodeDemo.xcodeproj/xcuserdata/caoyq.xcuserdatad/xcschemes/HCSystemicQRCodeDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycao/ACSystemicQRCodeDemo/HEAD/HCSystemicQRCodeDemo.xcodeproj/xcuserdata/caoyq.xcuserdatad/xcschemes/HCSystemicQRCodeDemo.xcscheme -------------------------------------------------------------------------------- /HCSystemicQRCodeDemo.xcodeproj/xcuserdata/caoyq.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycao/ACSystemicQRCodeDemo/HEAD/HCSystemicQRCodeDemo.xcodeproj/xcuserdata/caoyq.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /HCSystemicQRCodeDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycao/ACSystemicQRCodeDemo/HEAD/HCSystemicQRCodeDemo/AppDelegate.h -------------------------------------------------------------------------------- /HCSystemicQRCodeDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycao/ACSystemicQRCodeDemo/HEAD/HCSystemicQRCodeDemo/AppDelegate.m -------------------------------------------------------------------------------- /HCSystemicQRCodeDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycao/ACSystemicQRCodeDemo/HEAD/HCSystemicQRCodeDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /HCSystemicQRCodeDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycao/ACSystemicQRCodeDemo/HEAD/HCSystemicQRCodeDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /HCSystemicQRCodeDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycao/ACSystemicQRCodeDemo/HEAD/HCSystemicQRCodeDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /HCSystemicQRCodeDemo/FirstViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycao/ACSystemicQRCodeDemo/HEAD/HCSystemicQRCodeDemo/FirstViewController.h -------------------------------------------------------------------------------- /HCSystemicQRCodeDemo/FirstViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycao/ACSystemicQRCodeDemo/HEAD/HCSystemicQRCodeDemo/FirstViewController.m -------------------------------------------------------------------------------- /HCSystemicQRCodeDemo/HCSystemicQRCode/HCCreateQRCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycao/ACSystemicQRCodeDemo/HEAD/HCSystemicQRCodeDemo/HCSystemicQRCode/HCCreateQRCode.h -------------------------------------------------------------------------------- /HCSystemicQRCodeDemo/HCSystemicQRCode/HCCreateQRCode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycao/ACSystemicQRCodeDemo/HEAD/HCSystemicQRCodeDemo/HCSystemicQRCode/HCCreateQRCode.m -------------------------------------------------------------------------------- /HCSystemicQRCodeDemo/HCSystemicQRCode/HCHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycao/ACSystemicQRCodeDemo/HEAD/HCSystemicQRCodeDemo/HCSystemicQRCode/HCHeader.h -------------------------------------------------------------------------------- /HCSystemicQRCodeDemo/HCSystemicQRCode/HCScanQRViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycao/ACSystemicQRCodeDemo/HEAD/HCSystemicQRCodeDemo/HCSystemicQRCode/HCScanQRViewController.h -------------------------------------------------------------------------------- /HCSystemicQRCodeDemo/HCSystemicQRCode/HCScanQRViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycao/ACSystemicQRCodeDemo/HEAD/HCSystemicQRCodeDemo/HCSystemicQRCode/HCScanQRViewController.m -------------------------------------------------------------------------------- /HCSystemicQRCodeDemo/HCSystemicQRCode/Utils/UIFont+MyFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycao/ACSystemicQRCodeDemo/HEAD/HCSystemicQRCodeDemo/HCSystemicQRCode/Utils/UIFont+MyFont.h -------------------------------------------------------------------------------- /HCSystemicQRCodeDemo/HCSystemicQRCode/Utils/UIFont+MyFont.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycao/ACSystemicQRCodeDemo/HEAD/HCSystemicQRCodeDemo/HCSystemicQRCode/Utils/UIFont+MyFont.m -------------------------------------------------------------------------------- /HCSystemicQRCodeDemo/HCSystemicQRCode/Utils/UIView+Frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycao/ACSystemicQRCodeDemo/HEAD/HCSystemicQRCodeDemo/HCSystemicQRCode/Utils/UIView+Frame.h -------------------------------------------------------------------------------- /HCSystemicQRCodeDemo/HCSystemicQRCode/Utils/UIView+Frame.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycao/ACSystemicQRCodeDemo/HEAD/HCSystemicQRCodeDemo/HCSystemicQRCode/Utils/UIView+Frame.m -------------------------------------------------------------------------------- /HCSystemicQRCodeDemo/HCSystemicQRCode/image.bundle/ring.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycao/ACSystemicQRCodeDemo/HEAD/HCSystemicQRCodeDemo/HCSystemicQRCode/image.bundle/ring.wav -------------------------------------------------------------------------------- /HCSystemicQRCodeDemo/HCSystemicQRCode/image.bundle/scanBackground@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycao/ACSystemicQRCodeDemo/HEAD/HCSystemicQRCodeDemo/HCSystemicQRCode/image.bundle/scanBackground@2x.png -------------------------------------------------------------------------------- /HCSystemicQRCodeDemo/HCSystemicQRCode/image.bundle/scanBackground@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycao/ACSystemicQRCodeDemo/HEAD/HCSystemicQRCodeDemo/HCSystemicQRCode/image.bundle/scanBackground@3x.png -------------------------------------------------------------------------------- /HCSystemicQRCodeDemo/HCSystemicQRCode/image.bundle/scanLine@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycao/ACSystemicQRCodeDemo/HEAD/HCSystemicQRCodeDemo/HCSystemicQRCode/image.bundle/scanLine@2x.png -------------------------------------------------------------------------------- /HCSystemicQRCodeDemo/HCSystemicQRCode/image.bundle/scanLine@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycao/ACSystemicQRCodeDemo/HEAD/HCSystemicQRCodeDemo/HCSystemicQRCode/image.bundle/scanLine@3x.png -------------------------------------------------------------------------------- /HCSystemicQRCodeDemo/HCSystemicQRCode/image.bundle/turn_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycao/ACSystemicQRCodeDemo/HEAD/HCSystemicQRCodeDemo/HCSystemicQRCode/image.bundle/turn_off.png -------------------------------------------------------------------------------- /HCSystemicQRCodeDemo/HCSystemicQRCode/image.bundle/turn_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycao/ACSystemicQRCodeDemo/HEAD/HCSystemicQRCodeDemo/HCSystemicQRCode/image.bundle/turn_on.png -------------------------------------------------------------------------------- /HCSystemicQRCodeDemo/HCSystemicQRCode/model/SystemFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycao/ACSystemicQRCodeDemo/HEAD/HCSystemicQRCodeDemo/HCSystemicQRCode/model/SystemFunctions.h -------------------------------------------------------------------------------- /HCSystemicQRCodeDemo/HCSystemicQRCode/model/SystemFunctions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycao/ACSystemicQRCodeDemo/HEAD/HCSystemicQRCodeDemo/HCSystemicQRCode/model/SystemFunctions.m -------------------------------------------------------------------------------- /HCSystemicQRCodeDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycao/ACSystemicQRCodeDemo/HEAD/HCSystemicQRCodeDemo/Info.plist -------------------------------------------------------------------------------- /HCSystemicQRCodeDemo/ShowQRCodeViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycao/ACSystemicQRCodeDemo/HEAD/HCSystemicQRCodeDemo/ShowQRCodeViewController.h -------------------------------------------------------------------------------- /HCSystemicQRCodeDemo/ShowQRCodeViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycao/ACSystemicQRCodeDemo/HEAD/HCSystemicQRCodeDemo/ShowQRCodeViewController.m -------------------------------------------------------------------------------- /HCSystemicQRCodeDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycao/ACSystemicQRCodeDemo/HEAD/HCSystemicQRCodeDemo/ViewController.h -------------------------------------------------------------------------------- /HCSystemicQRCodeDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycao/ACSystemicQRCodeDemo/HEAD/HCSystemicQRCodeDemo/ViewController.m -------------------------------------------------------------------------------- /HCSystemicQRCodeDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycao/ACSystemicQRCodeDemo/HEAD/HCSystemicQRCodeDemo/main.m -------------------------------------------------------------------------------- /HCSystemicQRCodeDemoTests/HCSystemicQRCodeDemoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycao/ACSystemicQRCodeDemo/HEAD/HCSystemicQRCodeDemoTests/HCSystemicQRCodeDemoTests.m -------------------------------------------------------------------------------- /HCSystemicQRCodeDemoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycao/ACSystemicQRCodeDemo/HEAD/HCSystemicQRCodeDemoTests/Info.plist -------------------------------------------------------------------------------- /HCSystemicQRCodeDemoUITests/HCSystemicQRCodeDemoUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycao/ACSystemicQRCodeDemo/HEAD/HCSystemicQRCodeDemoUITests/HCSystemicQRCodeDemoUITests.m -------------------------------------------------------------------------------- /HCSystemicQRCodeDemoUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycao/ACSystemicQRCodeDemo/HEAD/HCSystemicQRCodeDemoUITests/Info.plist -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honeycao/ACSystemicQRCodeDemo/HEAD/README.md --------------------------------------------------------------------------------