├── LICENSE ├── README.md ├── UIBezierPath_And_CAShapeLayer.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── huangyibiao.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── huangyibiao.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── UIBezierPath_And_CAShapeLayer.xcscheme │ └── xcschememanagement.plist ├── UIBezierPath_And_CAShapeLayer ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── BezierPathView.h ├── BezierPathView.m ├── Info.plist ├── ViewController.h ├── ViewController.m └── main.m ├── UIBezierPath_And_CAShapeLayerTests ├── Info.plist └── UIBezierPath_And_CAShapeLayerTests.m └── UIBezierPath_And_CAShapeLayerUITests ├── Info.plist └── UIBezierPath_And_CAShapeLayerUITests.m /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/UIBezierPathLayerDemos/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/UIBezierPathLayerDemos/HEAD/README.md -------------------------------------------------------------------------------- /UIBezierPath_And_CAShapeLayer.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/UIBezierPathLayerDemos/HEAD/UIBezierPath_And_CAShapeLayer.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /UIBezierPath_And_CAShapeLayer.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/UIBezierPathLayerDemos/HEAD/UIBezierPath_And_CAShapeLayer.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /UIBezierPath_And_CAShapeLayer.xcodeproj/project.xcworkspace/xcuserdata/huangyibiao.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/UIBezierPathLayerDemos/HEAD/UIBezierPath_And_CAShapeLayer.xcodeproj/project.xcworkspace/xcuserdata/huangyibiao.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /UIBezierPath_And_CAShapeLayer.xcodeproj/xcuserdata/huangyibiao.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/UIBezierPathLayerDemos/HEAD/UIBezierPath_And_CAShapeLayer.xcodeproj/xcuserdata/huangyibiao.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /UIBezierPath_And_CAShapeLayer.xcodeproj/xcuserdata/huangyibiao.xcuserdatad/xcschemes/UIBezierPath_And_CAShapeLayer.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/UIBezierPathLayerDemos/HEAD/UIBezierPath_And_CAShapeLayer.xcodeproj/xcuserdata/huangyibiao.xcuserdatad/xcschemes/UIBezierPath_And_CAShapeLayer.xcscheme -------------------------------------------------------------------------------- /UIBezierPath_And_CAShapeLayer.xcodeproj/xcuserdata/huangyibiao.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/UIBezierPathLayerDemos/HEAD/UIBezierPath_And_CAShapeLayer.xcodeproj/xcuserdata/huangyibiao.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /UIBezierPath_And_CAShapeLayer/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/UIBezierPathLayerDemos/HEAD/UIBezierPath_And_CAShapeLayer/AppDelegate.h -------------------------------------------------------------------------------- /UIBezierPath_And_CAShapeLayer/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/UIBezierPathLayerDemos/HEAD/UIBezierPath_And_CAShapeLayer/AppDelegate.m -------------------------------------------------------------------------------- /UIBezierPath_And_CAShapeLayer/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/UIBezierPathLayerDemos/HEAD/UIBezierPath_And_CAShapeLayer/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /UIBezierPath_And_CAShapeLayer/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/UIBezierPathLayerDemos/HEAD/UIBezierPath_And_CAShapeLayer/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /UIBezierPath_And_CAShapeLayer/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/UIBezierPathLayerDemos/HEAD/UIBezierPath_And_CAShapeLayer/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /UIBezierPath_And_CAShapeLayer/BezierPathView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/UIBezierPathLayerDemos/HEAD/UIBezierPath_And_CAShapeLayer/BezierPathView.h -------------------------------------------------------------------------------- /UIBezierPath_And_CAShapeLayer/BezierPathView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/UIBezierPathLayerDemos/HEAD/UIBezierPath_And_CAShapeLayer/BezierPathView.m -------------------------------------------------------------------------------- /UIBezierPath_And_CAShapeLayer/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/UIBezierPathLayerDemos/HEAD/UIBezierPath_And_CAShapeLayer/Info.plist -------------------------------------------------------------------------------- /UIBezierPath_And_CAShapeLayer/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/UIBezierPathLayerDemos/HEAD/UIBezierPath_And_CAShapeLayer/ViewController.h -------------------------------------------------------------------------------- /UIBezierPath_And_CAShapeLayer/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/UIBezierPathLayerDemos/HEAD/UIBezierPath_And_CAShapeLayer/ViewController.m -------------------------------------------------------------------------------- /UIBezierPath_And_CAShapeLayer/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/UIBezierPathLayerDemos/HEAD/UIBezierPath_And_CAShapeLayer/main.m -------------------------------------------------------------------------------- /UIBezierPath_And_CAShapeLayerTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/UIBezierPathLayerDemos/HEAD/UIBezierPath_And_CAShapeLayerTests/Info.plist -------------------------------------------------------------------------------- /UIBezierPath_And_CAShapeLayerTests/UIBezierPath_And_CAShapeLayerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/UIBezierPathLayerDemos/HEAD/UIBezierPath_And_CAShapeLayerTests/UIBezierPath_And_CAShapeLayerTests.m -------------------------------------------------------------------------------- /UIBezierPath_And_CAShapeLayerUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/UIBezierPathLayerDemos/HEAD/UIBezierPath_And_CAShapeLayerUITests/Info.plist -------------------------------------------------------------------------------- /UIBezierPath_And_CAShapeLayerUITests/UIBezierPath_And_CAShapeLayerUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderJackyHuang/UIBezierPathLayerDemos/HEAD/UIBezierPath_And_CAShapeLayerUITests/UIBezierPath_And_CAShapeLayerUITests.m --------------------------------------------------------------------------------