├── README.md ├── YHDownLoad.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── YHIOS002.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── YHIOS002.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── YHDownLoad.xcscheme │ └── xcschememanagement.plist └── YHDownLoad ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets ├── AppIcon.appiconset │ └── Contents.json ├── Contents.json └── qq.imageset │ ├── Contents.json │ ├── qq@2x.png │ └── qq@3x.png ├── Base.lproj ├── LaunchScreen.storyboard └── Main.storyboard ├── Info.plist ├── SimulateDownLoadVC.h ├── SimulateDownLoadVC.m ├── Vendors └── Masonry │ ├── Info.plist │ ├── MASCompositeConstraint.h │ ├── MASCompositeConstraint.m │ ├── MASConstraint+Private.h │ ├── MASConstraint.h │ ├── MASConstraint.m │ ├── MASConstraintMaker.h │ ├── MASConstraintMaker.m │ ├── MASLayoutConstraint.h │ ├── MASLayoutConstraint.m │ ├── MASUtilities.h │ ├── MASViewAttribute.h │ ├── MASViewAttribute.m │ ├── MASViewConstraint.h │ ├── MASViewConstraint.m │ ├── Masonry.h │ ├── NSArray+MASAdditions.h │ ├── NSArray+MASAdditions.m │ ├── NSArray+MASShorthandAdditions.h │ ├── NSLayoutConstraint+MASDebugAdditions.h │ ├── NSLayoutConstraint+MASDebugAdditions.m │ ├── View+MASAdditions.h │ ├── View+MASAdditions.m │ ├── View+MASShorthandAdditions.h │ ├── ViewController+MASAdditions.h │ └── ViewController+MASAdditions.m ├── View ├── YHCellProgress.h └── YHCellProgress.m ├── ViewController.h ├── ViewController.m ├── YHDownLoad.pch ├── YHDownLoad ├── YHDownLoadManager.h ├── YHDownLoadManager.m ├── YHDownLoadModel.h └── YHDownLoadModel.m └── main.m /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHDownLoad/HEAD/README.md -------------------------------------------------------------------------------- /YHDownLoad.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHDownLoad/HEAD/YHDownLoad.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /YHDownLoad.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHDownLoad/HEAD/YHDownLoad.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /YHDownLoad.xcodeproj/project.xcworkspace/xcuserdata/YHIOS002.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHDownLoad/HEAD/YHDownLoad.xcodeproj/project.xcworkspace/xcuserdata/YHIOS002.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /YHDownLoad.xcodeproj/xcuserdata/YHIOS002.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHDownLoad/HEAD/YHDownLoad.xcodeproj/xcuserdata/YHIOS002.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /YHDownLoad.xcodeproj/xcuserdata/YHIOS002.xcuserdatad/xcschemes/YHDownLoad.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHDownLoad/HEAD/YHDownLoad.xcodeproj/xcuserdata/YHIOS002.xcuserdatad/xcschemes/YHDownLoad.xcscheme -------------------------------------------------------------------------------- /YHDownLoad.xcodeproj/xcuserdata/YHIOS002.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHDownLoad/HEAD/YHDownLoad.xcodeproj/xcuserdata/YHIOS002.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /YHDownLoad/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHDownLoad/HEAD/YHDownLoad/AppDelegate.h -------------------------------------------------------------------------------- /YHDownLoad/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHDownLoad/HEAD/YHDownLoad/AppDelegate.m -------------------------------------------------------------------------------- /YHDownLoad/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHDownLoad/HEAD/YHDownLoad/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /YHDownLoad/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHDownLoad/HEAD/YHDownLoad/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /YHDownLoad/Assets.xcassets/qq.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHDownLoad/HEAD/YHDownLoad/Assets.xcassets/qq.imageset/Contents.json -------------------------------------------------------------------------------- /YHDownLoad/Assets.xcassets/qq.imageset/qq@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHDownLoad/HEAD/YHDownLoad/Assets.xcassets/qq.imageset/qq@2x.png -------------------------------------------------------------------------------- /YHDownLoad/Assets.xcassets/qq.imageset/qq@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHDownLoad/HEAD/YHDownLoad/Assets.xcassets/qq.imageset/qq@3x.png -------------------------------------------------------------------------------- /YHDownLoad/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHDownLoad/HEAD/YHDownLoad/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /YHDownLoad/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHDownLoad/HEAD/YHDownLoad/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /YHDownLoad/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHDownLoad/HEAD/YHDownLoad/Info.plist -------------------------------------------------------------------------------- /YHDownLoad/SimulateDownLoadVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHDownLoad/HEAD/YHDownLoad/SimulateDownLoadVC.h -------------------------------------------------------------------------------- /YHDownLoad/SimulateDownLoadVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHDownLoad/HEAD/YHDownLoad/SimulateDownLoadVC.m -------------------------------------------------------------------------------- /YHDownLoad/Vendors/Masonry/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHDownLoad/HEAD/YHDownLoad/Vendors/Masonry/Info.plist -------------------------------------------------------------------------------- /YHDownLoad/Vendors/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHDownLoad/HEAD/YHDownLoad/Vendors/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /YHDownLoad/Vendors/Masonry/MASCompositeConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHDownLoad/HEAD/YHDownLoad/Vendors/Masonry/MASCompositeConstraint.m -------------------------------------------------------------------------------- /YHDownLoad/Vendors/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHDownLoad/HEAD/YHDownLoad/Vendors/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /YHDownLoad/Vendors/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHDownLoad/HEAD/YHDownLoad/Vendors/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /YHDownLoad/Vendors/Masonry/MASConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHDownLoad/HEAD/YHDownLoad/Vendors/Masonry/MASConstraint.m -------------------------------------------------------------------------------- /YHDownLoad/Vendors/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHDownLoad/HEAD/YHDownLoad/Vendors/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /YHDownLoad/Vendors/Masonry/MASConstraintMaker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHDownLoad/HEAD/YHDownLoad/Vendors/Masonry/MASConstraintMaker.m -------------------------------------------------------------------------------- /YHDownLoad/Vendors/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHDownLoad/HEAD/YHDownLoad/Vendors/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /YHDownLoad/Vendors/Masonry/MASLayoutConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHDownLoad/HEAD/YHDownLoad/Vendors/Masonry/MASLayoutConstraint.m -------------------------------------------------------------------------------- /YHDownLoad/Vendors/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHDownLoad/HEAD/YHDownLoad/Vendors/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /YHDownLoad/Vendors/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHDownLoad/HEAD/YHDownLoad/Vendors/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /YHDownLoad/Vendors/Masonry/MASViewAttribute.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHDownLoad/HEAD/YHDownLoad/Vendors/Masonry/MASViewAttribute.m -------------------------------------------------------------------------------- /YHDownLoad/Vendors/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHDownLoad/HEAD/YHDownLoad/Vendors/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /YHDownLoad/Vendors/Masonry/MASViewConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHDownLoad/HEAD/YHDownLoad/Vendors/Masonry/MASViewConstraint.m -------------------------------------------------------------------------------- /YHDownLoad/Vendors/Masonry/Masonry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHDownLoad/HEAD/YHDownLoad/Vendors/Masonry/Masonry.h -------------------------------------------------------------------------------- /YHDownLoad/Vendors/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHDownLoad/HEAD/YHDownLoad/Vendors/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /YHDownLoad/Vendors/Masonry/NSArray+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHDownLoad/HEAD/YHDownLoad/Vendors/Masonry/NSArray+MASAdditions.m -------------------------------------------------------------------------------- /YHDownLoad/Vendors/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHDownLoad/HEAD/YHDownLoad/Vendors/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /YHDownLoad/Vendors/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHDownLoad/HEAD/YHDownLoad/Vendors/Masonry/NSLayoutConstraint+MASDebugAdditions.h -------------------------------------------------------------------------------- /YHDownLoad/Vendors/Masonry/NSLayoutConstraint+MASDebugAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHDownLoad/HEAD/YHDownLoad/Vendors/Masonry/NSLayoutConstraint+MASDebugAdditions.m -------------------------------------------------------------------------------- /YHDownLoad/Vendors/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHDownLoad/HEAD/YHDownLoad/Vendors/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /YHDownLoad/Vendors/Masonry/View+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHDownLoad/HEAD/YHDownLoad/Vendors/Masonry/View+MASAdditions.m -------------------------------------------------------------------------------- /YHDownLoad/Vendors/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHDownLoad/HEAD/YHDownLoad/Vendors/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /YHDownLoad/Vendors/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHDownLoad/HEAD/YHDownLoad/Vendors/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /YHDownLoad/Vendors/Masonry/ViewController+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHDownLoad/HEAD/YHDownLoad/Vendors/Masonry/ViewController+MASAdditions.m -------------------------------------------------------------------------------- /YHDownLoad/View/YHCellProgress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHDownLoad/HEAD/YHDownLoad/View/YHCellProgress.h -------------------------------------------------------------------------------- /YHDownLoad/View/YHCellProgress.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHDownLoad/HEAD/YHDownLoad/View/YHCellProgress.m -------------------------------------------------------------------------------- /YHDownLoad/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHDownLoad/HEAD/YHDownLoad/ViewController.h -------------------------------------------------------------------------------- /YHDownLoad/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHDownLoad/HEAD/YHDownLoad/ViewController.m -------------------------------------------------------------------------------- /YHDownLoad/YHDownLoad.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHDownLoad/HEAD/YHDownLoad/YHDownLoad.pch -------------------------------------------------------------------------------- /YHDownLoad/YHDownLoad/YHDownLoadManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHDownLoad/HEAD/YHDownLoad/YHDownLoad/YHDownLoadManager.h -------------------------------------------------------------------------------- /YHDownLoad/YHDownLoad/YHDownLoadManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHDownLoad/HEAD/YHDownLoad/YHDownLoad/YHDownLoadManager.m -------------------------------------------------------------------------------- /YHDownLoad/YHDownLoad/YHDownLoadModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHDownLoad/HEAD/YHDownLoad/YHDownLoad/YHDownLoadModel.h -------------------------------------------------------------------------------- /YHDownLoad/YHDownLoad/YHDownLoadModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHDownLoad/HEAD/YHDownLoad/YHDownLoad/YHDownLoadModel.m -------------------------------------------------------------------------------- /YHDownLoad/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHDownLoad/HEAD/YHDownLoad/main.m --------------------------------------------------------------------------------