gitextract_f5m8txjr/ ├── LICENSE ├── MCDownloadManager/ │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets/ │ │ └── AppIcon.appiconset/ │ │ └── Contents.json │ ├── Base.lproj/ │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── MCDownloadManager/ │ │ ├── MCDefine.h │ │ ├── MCDownloadManager.h │ │ └── MCDownloadManager.m │ ├── MCDownloadManager.entitlements │ ├── Networking/ │ │ ├── MCURLRequest.h │ │ ├── MCURLRequest.m │ │ ├── MCURLRequestCenter.h │ │ ├── MCURLRequestCenter.m │ │ ├── MCURLResponse.h │ │ ├── MCURLResponse.m │ │ ├── MCURLSessionConfiguration.h │ │ ├── MCURLSessionConfiguration.m │ │ ├── MCWiFiManager.h │ │ └── MCWiFiManager.m │ ├── QKYDelayButton.h │ ├── QKYDelayButton.m │ ├── TableViewCell.h │ ├── TableViewCell.m │ ├── TestViewController.h │ ├── TestViewController.m │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── MCDownloadManager.podspec ├── MCDownloadManager.xcodeproj/ │ ├── project.pbxproj │ ├── project.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata/ │ │ ├── M.C.xcuserdatad/ │ │ │ └── UserInterfaceState.xcuserstate │ │ ├── machao.xcuserdatad/ │ │ │ └── UserInterfaceState.xcuserstate │ │ └── test.xcuserdatad/ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata/ │ ├── M.C.xcuserdatad/ │ │ ├── xcdebugger/ │ │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes/ │ │ ├── MCDownloadManager.xcscheme │ │ └── xcschememanagement.plist │ ├── machao.xcuserdatad/ │ │ ├── xcdebugger/ │ │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes/ │ │ ├── MCDownloadManager.xcscheme │ │ └── xcschememanagement.plist │ └── test.xcuserdatad/ │ ├── xcdebugger/ │ │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes/ │ ├── MCDownloadManager.xcscheme │ └── xcschememanagement.plist └── README.md