├── .DS_Store ├── .gitignore ├── LICENSE ├── PQDrawTest ├── .DS_Store ├── PQDrawTest.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── PQDrawTest │ ├── 16.png │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ │ ├── 222.imageset │ │ │ ├── 222.png │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── CellModel.h │ ├── CellModel.m │ ├── Draw.plist │ ├── DrawCircleViewcontroller.h │ ├── DrawCircleViewcontroller.m │ ├── DrawCircletView.h │ ├── DrawCircletView.m │ ├── DrawDownloadView.h │ ├── DrawDownloadView.m │ ├── DrawDownloadViewcontroller.h │ ├── DrawDownloadViewcontroller.m │ ├── DrawGradientController.h │ ├── DrawGradientController.m │ ├── DrawImageView.h │ ├── DrawImageView.m │ ├── DrawImageViewcontroller.h │ ├── DrawImageViewcontroller.m │ ├── DrawLineColorView.h │ ├── DrawLineColorView.m │ ├── DrawLineColorViewcontroller.h │ ├── DrawLineColorViewcontroller.m │ ├── DrawLineView.h │ ├── DrawLineView.m │ ├── DrawLineViewcontroller.h │ ├── DrawLineViewcontroller.m │ ├── DrawRectView.h │ ├── DrawRectView.m │ ├── DrawRectViewcontroller.h │ ├── DrawRectViewcontroller.m │ ├── DrawTextViewcontroller.h │ ├── DrawTextViewcontroller.m │ ├── DrawTexttView.h │ ├── DrawTexttView.m │ ├── ImageAddWaterImageViewcontroller.h │ ├── ImageAddWaterImageViewcontroller.m │ ├── ImageAddWaterTextViewcontroller.h │ ├── ImageAddWaterTextViewcontroller.m │ ├── ImageClipCircleAndBorderViewcontroller.h │ ├── ImageClipCircleAndBorderViewcontroller.m │ ├── ImageClipCircleViewcontroller.h │ ├── ImageClipCircleViewcontroller.m │ ├── ImageClipRectImageViewcontroller.h │ ├── ImageClipRectImageViewcontroller.m │ ├── ImageContextViewcontroller.h │ ├── ImageContextViewcontroller.m │ ├── ImageCutViewViewcontroller.h │ ├── ImageCutViewViewcontroller.m │ ├── ImageWipeViewcontroller.h │ ├── ImageWipeViewcontroller.m │ ├── Info.plist │ ├── LineView.h │ ├── LineView.m │ ├── PQTBDataSource.h │ ├── PQTBDataSource.m │ ├── PQTBDelegate.h │ ├── PQTBDelegate.m │ ├── PQWipeView.h │ ├── PQWipeView.m │ ├── PQWipeView.xib │ ├── SectionModel.h │ ├── SectionModel.m │ ├── UIImage+PQImage.h │ ├── UIImage+PQImage.m │ ├── UIView+pgqViewExtension.h │ ├── UIView+pgqViewExtension.m │ ├── ViewController.h │ ├── ViewController.m │ ├── back.jpg │ ├── fore.jpg │ ├── jiantou.png │ └── main.m ├── PQDrawTestTests │ ├── Info.plist │ └── PQDrawTestTests.m └── PQDrawTestUITests │ ├── Info.plist │ └── PQDrawTestUITests.m └── README.md /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/LICENSE -------------------------------------------------------------------------------- /PQDrawTest/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/.DS_Store -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTest.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTest.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTest/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTest/16.png -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTest/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTest/AppDelegate.h -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTest/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTest/AppDelegate.m -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTest/Assets.xcassets/222.imageset/222.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTest/Assets.xcassets/222.imageset/222.png -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTest/Assets.xcassets/222.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTest/Assets.xcassets/222.imageset/Contents.json -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTest/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTest/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTest/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTest/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTest/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTest/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTest/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTest/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTest/CellModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTest/CellModel.h -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTest/CellModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTest/CellModel.m -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTest/Draw.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTest/Draw.plist -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTest/DrawCircleViewcontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTest/DrawCircleViewcontroller.h -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTest/DrawCircleViewcontroller.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTest/DrawCircleViewcontroller.m -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTest/DrawCircletView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTest/DrawCircletView.h -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTest/DrawCircletView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTest/DrawCircletView.m -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTest/DrawDownloadView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTest/DrawDownloadView.h -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTest/DrawDownloadView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTest/DrawDownloadView.m -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTest/DrawDownloadViewcontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTest/DrawDownloadViewcontroller.h -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTest/DrawDownloadViewcontroller.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTest/DrawDownloadViewcontroller.m -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTest/DrawGradientController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTest/DrawGradientController.h -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTest/DrawGradientController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTest/DrawGradientController.m -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTest/DrawImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTest/DrawImageView.h -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTest/DrawImageView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTest/DrawImageView.m -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTest/DrawImageViewcontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTest/DrawImageViewcontroller.h -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTest/DrawImageViewcontroller.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTest/DrawImageViewcontroller.m -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTest/DrawLineColorView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTest/DrawLineColorView.h -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTest/DrawLineColorView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTest/DrawLineColorView.m -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTest/DrawLineColorViewcontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTest/DrawLineColorViewcontroller.h -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTest/DrawLineColorViewcontroller.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTest/DrawLineColorViewcontroller.m -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTest/DrawLineView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTest/DrawLineView.h -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTest/DrawLineView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTest/DrawLineView.m -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTest/DrawLineViewcontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTest/DrawLineViewcontroller.h -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTest/DrawLineViewcontroller.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTest/DrawLineViewcontroller.m -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTest/DrawRectView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTest/DrawRectView.h -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTest/DrawRectView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTest/DrawRectView.m -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTest/DrawRectViewcontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTest/DrawRectViewcontroller.h -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTest/DrawRectViewcontroller.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTest/DrawRectViewcontroller.m -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTest/DrawTextViewcontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTest/DrawTextViewcontroller.h -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTest/DrawTextViewcontroller.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTest/DrawTextViewcontroller.m -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTest/DrawTexttView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTest/DrawTexttView.h -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTest/DrawTexttView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTest/DrawTexttView.m -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTest/ImageAddWaterImageViewcontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTest/ImageAddWaterImageViewcontroller.h -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTest/ImageAddWaterImageViewcontroller.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTest/ImageAddWaterImageViewcontroller.m -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTest/ImageAddWaterTextViewcontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTest/ImageAddWaterTextViewcontroller.h -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTest/ImageAddWaterTextViewcontroller.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTest/ImageAddWaterTextViewcontroller.m -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTest/ImageClipCircleAndBorderViewcontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTest/ImageClipCircleAndBorderViewcontroller.h -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTest/ImageClipCircleAndBorderViewcontroller.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTest/ImageClipCircleAndBorderViewcontroller.m -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTest/ImageClipCircleViewcontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTest/ImageClipCircleViewcontroller.h -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTest/ImageClipCircleViewcontroller.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTest/ImageClipCircleViewcontroller.m -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTest/ImageClipRectImageViewcontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTest/ImageClipRectImageViewcontroller.h -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTest/ImageClipRectImageViewcontroller.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTest/ImageClipRectImageViewcontroller.m -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTest/ImageContextViewcontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTest/ImageContextViewcontroller.h -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTest/ImageContextViewcontroller.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTest/ImageContextViewcontroller.m -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTest/ImageCutViewViewcontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTest/ImageCutViewViewcontroller.h -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTest/ImageCutViewViewcontroller.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTest/ImageCutViewViewcontroller.m -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTest/ImageWipeViewcontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTest/ImageWipeViewcontroller.h -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTest/ImageWipeViewcontroller.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTest/ImageWipeViewcontroller.m -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTest/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTest/Info.plist -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTest/LineView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTest/LineView.h -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTest/LineView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTest/LineView.m -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTest/PQTBDataSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTest/PQTBDataSource.h -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTest/PQTBDataSource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTest/PQTBDataSource.m -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTest/PQTBDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTest/PQTBDelegate.h -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTest/PQTBDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTest/PQTBDelegate.m -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTest/PQWipeView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTest/PQWipeView.h -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTest/PQWipeView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTest/PQWipeView.m -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTest/PQWipeView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTest/PQWipeView.xib -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTest/SectionModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTest/SectionModel.h -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTest/SectionModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTest/SectionModel.m -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTest/UIImage+PQImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTest/UIImage+PQImage.h -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTest/UIImage+PQImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTest/UIImage+PQImage.m -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTest/UIView+pgqViewExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTest/UIView+pgqViewExtension.h -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTest/UIView+pgqViewExtension.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTest/UIView+pgqViewExtension.m -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTest/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTest/ViewController.h -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTest/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTest/ViewController.m -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTest/back.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTest/back.jpg -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTest/fore.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTest/fore.jpg -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTest/jiantou.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTest/jiantou.png -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTest/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTest/main.m -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTestTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTestTests/Info.plist -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTestTests/PQDrawTestTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTestTests/PQDrawTestTests.m -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTestUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTestUITests/Info.plist -------------------------------------------------------------------------------- /PQDrawTest/PQDrawTestUITests/PQDrawTestUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/PQDrawTest/PQDrawTestUITests/PQDrawTestUITests.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepgq/DrawDemo/HEAD/README.md --------------------------------------------------------------------------------