├── CCPImage.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcuserdata │ └── chuchengpeng.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── CCPImage.xcscheme │ └── xcschememanagement.plist └── CCPImage ├── 1.jpg ├── 2.jpg ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets └── AppIcon.appiconset │ └── Contents.json ├── Base.lproj ├── LaunchScreen.storyboard └── Main.storyboard ├── ClipImage.h ├── ClipImage.m ├── CombineImage.h ├── CombineImage.m ├── CurvePart.h ├── CurvePart.m ├── Info.plist ├── IrregularClipView.h ├── IrregularClipView.m ├── PartWithBeeline.h ├── PartWithBeeline.m ├── PinScale.h ├── PinScale.m ├── ScrollScale.h ├── ScrollScale.m ├── ViewController.h ├── ViewController.m └── main.m /CCPImage.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolboy-ccp/CCPImage/HEAD/CCPImage.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CCPImage.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolboy-ccp/CCPImage/HEAD/CCPImage.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CCPImage.xcodeproj/xcuserdata/chuchengpeng.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolboy-ccp/CCPImage/HEAD/CCPImage.xcodeproj/xcuserdata/chuchengpeng.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /CCPImage.xcodeproj/xcuserdata/chuchengpeng.xcuserdatad/xcschemes/CCPImage.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolboy-ccp/CCPImage/HEAD/CCPImage.xcodeproj/xcuserdata/chuchengpeng.xcuserdatad/xcschemes/CCPImage.xcscheme -------------------------------------------------------------------------------- /CCPImage.xcodeproj/xcuserdata/chuchengpeng.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolboy-ccp/CCPImage/HEAD/CCPImage.xcodeproj/xcuserdata/chuchengpeng.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /CCPImage/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolboy-ccp/CCPImage/HEAD/CCPImage/1.jpg -------------------------------------------------------------------------------- /CCPImage/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolboy-ccp/CCPImage/HEAD/CCPImage/2.jpg -------------------------------------------------------------------------------- /CCPImage/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolboy-ccp/CCPImage/HEAD/CCPImage/AppDelegate.h -------------------------------------------------------------------------------- /CCPImage/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolboy-ccp/CCPImage/HEAD/CCPImage/AppDelegate.m -------------------------------------------------------------------------------- /CCPImage/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolboy-ccp/CCPImage/HEAD/CCPImage/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /CCPImage/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolboy-ccp/CCPImage/HEAD/CCPImage/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /CCPImage/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolboy-ccp/CCPImage/HEAD/CCPImage/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /CCPImage/ClipImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolboy-ccp/CCPImage/HEAD/CCPImage/ClipImage.h -------------------------------------------------------------------------------- /CCPImage/ClipImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolboy-ccp/CCPImage/HEAD/CCPImage/ClipImage.m -------------------------------------------------------------------------------- /CCPImage/CombineImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolboy-ccp/CCPImage/HEAD/CCPImage/CombineImage.h -------------------------------------------------------------------------------- /CCPImage/CombineImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolboy-ccp/CCPImage/HEAD/CCPImage/CombineImage.m -------------------------------------------------------------------------------- /CCPImage/CurvePart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolboy-ccp/CCPImage/HEAD/CCPImage/CurvePart.h -------------------------------------------------------------------------------- /CCPImage/CurvePart.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolboy-ccp/CCPImage/HEAD/CCPImage/CurvePart.m -------------------------------------------------------------------------------- /CCPImage/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolboy-ccp/CCPImage/HEAD/CCPImage/Info.plist -------------------------------------------------------------------------------- /CCPImage/IrregularClipView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolboy-ccp/CCPImage/HEAD/CCPImage/IrregularClipView.h -------------------------------------------------------------------------------- /CCPImage/IrregularClipView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolboy-ccp/CCPImage/HEAD/CCPImage/IrregularClipView.m -------------------------------------------------------------------------------- /CCPImage/PartWithBeeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolboy-ccp/CCPImage/HEAD/CCPImage/PartWithBeeline.h -------------------------------------------------------------------------------- /CCPImage/PartWithBeeline.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolboy-ccp/CCPImage/HEAD/CCPImage/PartWithBeeline.m -------------------------------------------------------------------------------- /CCPImage/PinScale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolboy-ccp/CCPImage/HEAD/CCPImage/PinScale.h -------------------------------------------------------------------------------- /CCPImage/PinScale.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolboy-ccp/CCPImage/HEAD/CCPImage/PinScale.m -------------------------------------------------------------------------------- /CCPImage/ScrollScale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolboy-ccp/CCPImage/HEAD/CCPImage/ScrollScale.h -------------------------------------------------------------------------------- /CCPImage/ScrollScale.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolboy-ccp/CCPImage/HEAD/CCPImage/ScrollScale.m -------------------------------------------------------------------------------- /CCPImage/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolboy-ccp/CCPImage/HEAD/CCPImage/ViewController.h -------------------------------------------------------------------------------- /CCPImage/ViewController.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CCPImage/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolboy-ccp/CCPImage/HEAD/CCPImage/main.m --------------------------------------------------------------------------------