├── PGG_OC_Image.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcuserdata │ └── chen.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ └── xcschememanagement.plist ├── PGG_OC_Image ├── AnyCutViewController.h ├── AnyCutViewController.m ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── PGG_icon1024.png │ │ ├── PGG_icon20@2x.png │ │ ├── PGG_icon20@3x.png │ │ ├── PGG_icon29@2x.png │ │ ├── PGG_icon29@3x.png │ │ ├── PGG_icon40@2x.png │ │ ├── PGG_icon40@3x.png │ │ ├── PGG_icon60@2x.png │ │ └── PGG_icon60@3x.png │ ├── Contents.json │ ├── Details_Btn_Up.imageset │ │ ├── Contents.json │ │ ├── Details_Btn_Up@2x.png │ │ └── Details_Btn_Up@3x.png │ ├── mohu.imageset │ │ ├── Contents.json │ │ └── mohu.jpg │ ├── textImage.imageset │ │ ├── Contents.json │ │ └── textImage.jpg │ ├── zhaoyihuan.imageset │ │ ├── Contents.json │ │ └── zhaoyihuan.jpg │ └── 国旗.imageset │ │ ├── Contents.json │ │ └── 国旗.gif ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── GuaJiangViewController.h ├── GuaJiangViewController.m ├── Info.plist ├── NextViewController.h ├── NextViewController.m ├── THEmoticonView.h ├── THEmoticonView.m ├── THScaleButton.h ├── THScaleButton.m ├── UIImage+Quart2D.h ├── UIImage+Quart2D.m ├── UIView+Frame.h ├── UIView+Frame.m ├── ViewController.h ├── ViewController.m └── main.m ├── PGG_OC_ImageTests ├── Info.plist └── PGG_OC_ImageTests.m ├── PGG_OC_ImageUITests ├── Info.plist └── PGG_OC_ImageUITests.m ├── README.md └── gif └── Untitle2.gif /PGG_OC_Image.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penghero/PGG_OC_Image/HEAD/PGG_OC_Image.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /PGG_OC_Image.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penghero/PGG_OC_Image/HEAD/PGG_OC_Image.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /PGG_OC_Image.xcodeproj/xcuserdata/chen.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penghero/PGG_OC_Image/HEAD/PGG_OC_Image.xcodeproj/xcuserdata/chen.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /PGG_OC_Image.xcodeproj/xcuserdata/chen.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penghero/PGG_OC_Image/HEAD/PGG_OC_Image.xcodeproj/xcuserdata/chen.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /PGG_OC_Image/AnyCutViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penghero/PGG_OC_Image/HEAD/PGG_OC_Image/AnyCutViewController.h -------------------------------------------------------------------------------- /PGG_OC_Image/AnyCutViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penghero/PGG_OC_Image/HEAD/PGG_OC_Image/AnyCutViewController.m -------------------------------------------------------------------------------- /PGG_OC_Image/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penghero/PGG_OC_Image/HEAD/PGG_OC_Image/AppDelegate.h -------------------------------------------------------------------------------- /PGG_OC_Image/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penghero/PGG_OC_Image/HEAD/PGG_OC_Image/AppDelegate.m -------------------------------------------------------------------------------- /PGG_OC_Image/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penghero/PGG_OC_Image/HEAD/PGG_OC_Image/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /PGG_OC_Image/Assets.xcassets/AppIcon.appiconset/PGG_icon1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penghero/PGG_OC_Image/HEAD/PGG_OC_Image/Assets.xcassets/AppIcon.appiconset/PGG_icon1024.png -------------------------------------------------------------------------------- /PGG_OC_Image/Assets.xcassets/AppIcon.appiconset/PGG_icon20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penghero/PGG_OC_Image/HEAD/PGG_OC_Image/Assets.xcassets/AppIcon.appiconset/PGG_icon20@2x.png -------------------------------------------------------------------------------- /PGG_OC_Image/Assets.xcassets/AppIcon.appiconset/PGG_icon20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penghero/PGG_OC_Image/HEAD/PGG_OC_Image/Assets.xcassets/AppIcon.appiconset/PGG_icon20@3x.png -------------------------------------------------------------------------------- /PGG_OC_Image/Assets.xcassets/AppIcon.appiconset/PGG_icon29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penghero/PGG_OC_Image/HEAD/PGG_OC_Image/Assets.xcassets/AppIcon.appiconset/PGG_icon29@2x.png -------------------------------------------------------------------------------- /PGG_OC_Image/Assets.xcassets/AppIcon.appiconset/PGG_icon29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penghero/PGG_OC_Image/HEAD/PGG_OC_Image/Assets.xcassets/AppIcon.appiconset/PGG_icon29@3x.png -------------------------------------------------------------------------------- /PGG_OC_Image/Assets.xcassets/AppIcon.appiconset/PGG_icon40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penghero/PGG_OC_Image/HEAD/PGG_OC_Image/Assets.xcassets/AppIcon.appiconset/PGG_icon40@2x.png -------------------------------------------------------------------------------- /PGG_OC_Image/Assets.xcassets/AppIcon.appiconset/PGG_icon40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penghero/PGG_OC_Image/HEAD/PGG_OC_Image/Assets.xcassets/AppIcon.appiconset/PGG_icon40@3x.png -------------------------------------------------------------------------------- /PGG_OC_Image/Assets.xcassets/AppIcon.appiconset/PGG_icon60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penghero/PGG_OC_Image/HEAD/PGG_OC_Image/Assets.xcassets/AppIcon.appiconset/PGG_icon60@2x.png -------------------------------------------------------------------------------- /PGG_OC_Image/Assets.xcassets/AppIcon.appiconset/PGG_icon60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penghero/PGG_OC_Image/HEAD/PGG_OC_Image/Assets.xcassets/AppIcon.appiconset/PGG_icon60@3x.png -------------------------------------------------------------------------------- /PGG_OC_Image/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penghero/PGG_OC_Image/HEAD/PGG_OC_Image/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /PGG_OC_Image/Assets.xcassets/Details_Btn_Up.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penghero/PGG_OC_Image/HEAD/PGG_OC_Image/Assets.xcassets/Details_Btn_Up.imageset/Contents.json -------------------------------------------------------------------------------- /PGG_OC_Image/Assets.xcassets/Details_Btn_Up.imageset/Details_Btn_Up@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penghero/PGG_OC_Image/HEAD/PGG_OC_Image/Assets.xcassets/Details_Btn_Up.imageset/Details_Btn_Up@2x.png -------------------------------------------------------------------------------- /PGG_OC_Image/Assets.xcassets/Details_Btn_Up.imageset/Details_Btn_Up@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penghero/PGG_OC_Image/HEAD/PGG_OC_Image/Assets.xcassets/Details_Btn_Up.imageset/Details_Btn_Up@3x.png -------------------------------------------------------------------------------- /PGG_OC_Image/Assets.xcassets/mohu.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penghero/PGG_OC_Image/HEAD/PGG_OC_Image/Assets.xcassets/mohu.imageset/Contents.json -------------------------------------------------------------------------------- /PGG_OC_Image/Assets.xcassets/mohu.imageset/mohu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penghero/PGG_OC_Image/HEAD/PGG_OC_Image/Assets.xcassets/mohu.imageset/mohu.jpg -------------------------------------------------------------------------------- /PGG_OC_Image/Assets.xcassets/textImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penghero/PGG_OC_Image/HEAD/PGG_OC_Image/Assets.xcassets/textImage.imageset/Contents.json -------------------------------------------------------------------------------- /PGG_OC_Image/Assets.xcassets/textImage.imageset/textImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penghero/PGG_OC_Image/HEAD/PGG_OC_Image/Assets.xcassets/textImage.imageset/textImage.jpg -------------------------------------------------------------------------------- /PGG_OC_Image/Assets.xcassets/zhaoyihuan.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penghero/PGG_OC_Image/HEAD/PGG_OC_Image/Assets.xcassets/zhaoyihuan.imageset/Contents.json -------------------------------------------------------------------------------- /PGG_OC_Image/Assets.xcassets/zhaoyihuan.imageset/zhaoyihuan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penghero/PGG_OC_Image/HEAD/PGG_OC_Image/Assets.xcassets/zhaoyihuan.imageset/zhaoyihuan.jpg -------------------------------------------------------------------------------- /PGG_OC_Image/Assets.xcassets/国旗.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penghero/PGG_OC_Image/HEAD/PGG_OC_Image/Assets.xcassets/国旗.imageset/Contents.json -------------------------------------------------------------------------------- /PGG_OC_Image/Assets.xcassets/国旗.imageset/国旗.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penghero/PGG_OC_Image/HEAD/PGG_OC_Image/Assets.xcassets/国旗.imageset/国旗.gif -------------------------------------------------------------------------------- /PGG_OC_Image/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penghero/PGG_OC_Image/HEAD/PGG_OC_Image/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /PGG_OC_Image/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penghero/PGG_OC_Image/HEAD/PGG_OC_Image/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /PGG_OC_Image/GuaJiangViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penghero/PGG_OC_Image/HEAD/PGG_OC_Image/GuaJiangViewController.h -------------------------------------------------------------------------------- /PGG_OC_Image/GuaJiangViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penghero/PGG_OC_Image/HEAD/PGG_OC_Image/GuaJiangViewController.m -------------------------------------------------------------------------------- /PGG_OC_Image/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penghero/PGG_OC_Image/HEAD/PGG_OC_Image/Info.plist -------------------------------------------------------------------------------- /PGG_OC_Image/NextViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penghero/PGG_OC_Image/HEAD/PGG_OC_Image/NextViewController.h -------------------------------------------------------------------------------- /PGG_OC_Image/NextViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penghero/PGG_OC_Image/HEAD/PGG_OC_Image/NextViewController.m -------------------------------------------------------------------------------- /PGG_OC_Image/THEmoticonView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penghero/PGG_OC_Image/HEAD/PGG_OC_Image/THEmoticonView.h -------------------------------------------------------------------------------- /PGG_OC_Image/THEmoticonView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penghero/PGG_OC_Image/HEAD/PGG_OC_Image/THEmoticonView.m -------------------------------------------------------------------------------- /PGG_OC_Image/THScaleButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penghero/PGG_OC_Image/HEAD/PGG_OC_Image/THScaleButton.h -------------------------------------------------------------------------------- /PGG_OC_Image/THScaleButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penghero/PGG_OC_Image/HEAD/PGG_OC_Image/THScaleButton.m -------------------------------------------------------------------------------- /PGG_OC_Image/UIImage+Quart2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penghero/PGG_OC_Image/HEAD/PGG_OC_Image/UIImage+Quart2D.h -------------------------------------------------------------------------------- /PGG_OC_Image/UIImage+Quart2D.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penghero/PGG_OC_Image/HEAD/PGG_OC_Image/UIImage+Quart2D.m -------------------------------------------------------------------------------- /PGG_OC_Image/UIView+Frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penghero/PGG_OC_Image/HEAD/PGG_OC_Image/UIView+Frame.h -------------------------------------------------------------------------------- /PGG_OC_Image/UIView+Frame.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penghero/PGG_OC_Image/HEAD/PGG_OC_Image/UIView+Frame.m -------------------------------------------------------------------------------- /PGG_OC_Image/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penghero/PGG_OC_Image/HEAD/PGG_OC_Image/ViewController.h -------------------------------------------------------------------------------- /PGG_OC_Image/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penghero/PGG_OC_Image/HEAD/PGG_OC_Image/ViewController.m -------------------------------------------------------------------------------- /PGG_OC_Image/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penghero/PGG_OC_Image/HEAD/PGG_OC_Image/main.m -------------------------------------------------------------------------------- /PGG_OC_ImageTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penghero/PGG_OC_Image/HEAD/PGG_OC_ImageTests/Info.plist -------------------------------------------------------------------------------- /PGG_OC_ImageTests/PGG_OC_ImageTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penghero/PGG_OC_Image/HEAD/PGG_OC_ImageTests/PGG_OC_ImageTests.m -------------------------------------------------------------------------------- /PGG_OC_ImageUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penghero/PGG_OC_Image/HEAD/PGG_OC_ImageUITests/Info.plist -------------------------------------------------------------------------------- /PGG_OC_ImageUITests/PGG_OC_ImageUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penghero/PGG_OC_Image/HEAD/PGG_OC_ImageUITests/PGG_OC_ImageUITests.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penghero/PGG_OC_Image/HEAD/README.md -------------------------------------------------------------------------------- /gif/Untitle2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penghero/PGG_OC_Image/HEAD/gif/Untitle2.gif --------------------------------------------------------------------------------