gitextract_fde3d75u/ ├── DDQRCode/ │ └── Classes/ │ ├── QRItem.h │ ├── QRItem.m │ ├── QRMenu.h │ ├── QRMenu.m │ ├── QRUtil.h │ ├── QRUtil.m │ ├── QRView.h │ └── QRView.m ├── DDQRCode.podspec ├── Example/ │ ├── DDQRCode/ │ │ ├── DDAppDelegate.h │ │ ├── DDAppDelegate.m │ │ ├── DDPhotoQRCodeViewController.h │ │ ├── DDPhotoQRCodeViewController.m │ │ ├── DDQRCode-Info.plist │ │ ├── DDQRCode-Prefix.pch │ │ ├── DDQRCodeViewController.h │ │ ├── DDQRCodeViewController.m │ │ ├── DDViewController.h │ │ ├── DDViewController.m │ │ ├── Images.xcassets/ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ └── LaunchImage.launchimage/ │ │ │ └── Contents.json │ │ ├── Main.storyboard │ │ ├── en.lproj/ │ │ │ └── InfoPlist.strings │ │ └── main.m │ ├── DDQRCode.xcodeproj/ │ │ ├── project.pbxproj │ │ ├── project.xcworkspace/ │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ └── xcschemes/ │ │ └── DDQRCode-Example.xcscheme │ ├── DDQRCode.xcworkspace/ │ │ └── contents.xcworkspacedata │ ├── Podfile │ ├── Pods/ │ │ ├── DDQRCode/ │ │ │ ├── DDQRCode/ │ │ │ │ └── Classes/ │ │ │ │ ├── QRItem.h │ │ │ │ ├── QRItem.m │ │ │ │ ├── QRMenu.h │ │ │ │ ├── QRMenu.m │ │ │ │ ├── QRUtil.h │ │ │ │ ├── QRUtil.m │ │ │ │ ├── QRView.h │ │ │ │ └── QRView.m │ │ │ ├── LICENSE │ │ │ └── README.md │ │ ├── Local Podspecs/ │ │ │ └── DDQRCode.podspec.json │ │ ├── Pods.xcodeproj/ │ │ │ └── project.pbxproj │ │ └── Target Support Files/ │ │ ├── DDQRCode/ │ │ │ ├── DDQRCode-dummy.m │ │ │ ├── DDQRCode-prefix.pch │ │ │ ├── DDQRCode-umbrella.h │ │ │ ├── DDQRCode.modulemap │ │ │ ├── DDQRCode.xcconfig │ │ │ └── Info.plist │ │ └── Pods-DDQRCode_Example/ │ │ ├── Info.plist │ │ ├── Pods-DDQRCode_Example-acknowledgements.markdown │ │ ├── Pods-DDQRCode_Example-acknowledgements.plist │ │ ├── Pods-DDQRCode_Example-dummy.m │ │ ├── Pods-DDQRCode_Example-frameworks.sh │ │ ├── Pods-DDQRCode_Example-resources.sh │ │ ├── Pods-DDQRCode_Example-umbrella.h │ │ ├── Pods-DDQRCode_Example.debug.xcconfig │ │ ├── Pods-DDQRCode_Example.modulemap │ │ └── Pods-DDQRCode_Example.release.xcconfig │ └── Tests/ │ ├── Tests-Info.plist │ ├── Tests-Prefix.pch │ ├── Tests.m │ └── en.lproj/ │ └── InfoPlist.strings ├── LICENSE └── README.md