├── .gitignore ├── README.md ├── SKUBezierPath+SVG.h ├── SKUBezierPath+SVG.m ├── Tests ├── Podfile ├── Podfile.lock ├── UIBezierPath_SVG.xcodeproj │ └── project.pbxproj └── UIBezierPath_SVGTests │ ├── UIBezierPath_SVGTests-Info.plist │ ├── UIBezierPath_SVGTests-Prefix.pch │ ├── UIBezierPath_SVGTests.h │ └── UIBezierPath_SVGTests.m ├── example ├── svg_Mac │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── MainMenu.xib │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ ├── MacPathView.h │ ├── MacPathView.m │ ├── MacViewController.h │ ├── MacViewController.m │ ├── NSBezierPath+CGPath.h │ ├── NSBezierPath+CGPath.m │ └── main.m ├── svg_test.xcodeproj │ └── project.pbxproj └── svg_test │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── PathView.h │ ├── PathView.m │ ├── TigerView.h │ ├── TigerView.m │ ├── ViewController.h │ ├── ViewController.m │ ├── en.lproj │ ├── InfoPlist.strings │ ├── ViewController_iPad.xib │ └── ViewController_iPhone.xib │ ├── main.m │ ├── svg_test-Info.plist │ ├── svg_test-Prefix.pch │ └── tiger.js ├── macSS.png └── photo.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ap4y/UIBezierPath-SVG/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ap4y/UIBezierPath-SVG/HEAD/README.md -------------------------------------------------------------------------------- /SKUBezierPath+SVG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ap4y/UIBezierPath-SVG/HEAD/SKUBezierPath+SVG.h -------------------------------------------------------------------------------- /SKUBezierPath+SVG.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ap4y/UIBezierPath-SVG/HEAD/SKUBezierPath+SVG.m -------------------------------------------------------------------------------- /Tests/Podfile: -------------------------------------------------------------------------------- 1 | platform :ios, '4.3' 2 | pod 'OCMock' 3 | -------------------------------------------------------------------------------- /Tests/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ap4y/UIBezierPath-SVG/HEAD/Tests/Podfile.lock -------------------------------------------------------------------------------- /Tests/UIBezierPath_SVG.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ap4y/UIBezierPath-SVG/HEAD/Tests/UIBezierPath_SVG.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Tests/UIBezierPath_SVGTests/UIBezierPath_SVGTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ap4y/UIBezierPath-SVG/HEAD/Tests/UIBezierPath_SVGTests/UIBezierPath_SVGTests-Info.plist -------------------------------------------------------------------------------- /Tests/UIBezierPath_SVGTests/UIBezierPath_SVGTests-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ap4y/UIBezierPath-SVG/HEAD/Tests/UIBezierPath_SVGTests/UIBezierPath_SVGTests-Prefix.pch -------------------------------------------------------------------------------- /Tests/UIBezierPath_SVGTests/UIBezierPath_SVGTests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ap4y/UIBezierPath-SVG/HEAD/Tests/UIBezierPath_SVGTests/UIBezierPath_SVGTests.h -------------------------------------------------------------------------------- /Tests/UIBezierPath_SVGTests/UIBezierPath_SVGTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ap4y/UIBezierPath-SVG/HEAD/Tests/UIBezierPath_SVGTests/UIBezierPath_SVGTests.m -------------------------------------------------------------------------------- /example/svg_Mac/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ap4y/UIBezierPath-SVG/HEAD/example/svg_Mac/AppDelegate.h -------------------------------------------------------------------------------- /example/svg_Mac/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ap4y/UIBezierPath-SVG/HEAD/example/svg_Mac/AppDelegate.m -------------------------------------------------------------------------------- /example/svg_Mac/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ap4y/UIBezierPath-SVG/HEAD/example/svg_Mac/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /example/svg_Mac/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ap4y/UIBezierPath-SVG/HEAD/example/svg_Mac/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/svg_Mac/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ap4y/UIBezierPath-SVG/HEAD/example/svg_Mac/Info.plist -------------------------------------------------------------------------------- /example/svg_Mac/MacPathView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ap4y/UIBezierPath-SVG/HEAD/example/svg_Mac/MacPathView.h -------------------------------------------------------------------------------- /example/svg_Mac/MacPathView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ap4y/UIBezierPath-SVG/HEAD/example/svg_Mac/MacPathView.m -------------------------------------------------------------------------------- /example/svg_Mac/MacViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ap4y/UIBezierPath-SVG/HEAD/example/svg_Mac/MacViewController.h -------------------------------------------------------------------------------- /example/svg_Mac/MacViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ap4y/UIBezierPath-SVG/HEAD/example/svg_Mac/MacViewController.m -------------------------------------------------------------------------------- /example/svg_Mac/NSBezierPath+CGPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ap4y/UIBezierPath-SVG/HEAD/example/svg_Mac/NSBezierPath+CGPath.h -------------------------------------------------------------------------------- /example/svg_Mac/NSBezierPath+CGPath.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ap4y/UIBezierPath-SVG/HEAD/example/svg_Mac/NSBezierPath+CGPath.m -------------------------------------------------------------------------------- /example/svg_Mac/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ap4y/UIBezierPath-SVG/HEAD/example/svg_Mac/main.m -------------------------------------------------------------------------------- /example/svg_test.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ap4y/UIBezierPath-SVG/HEAD/example/svg_test.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/svg_test/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ap4y/UIBezierPath-SVG/HEAD/example/svg_test/AppDelegate.h -------------------------------------------------------------------------------- /example/svg_test/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ap4y/UIBezierPath-SVG/HEAD/example/svg_test/AppDelegate.m -------------------------------------------------------------------------------- /example/svg_test/PathView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ap4y/UIBezierPath-SVG/HEAD/example/svg_test/PathView.h -------------------------------------------------------------------------------- /example/svg_test/PathView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ap4y/UIBezierPath-SVG/HEAD/example/svg_test/PathView.m -------------------------------------------------------------------------------- /example/svg_test/TigerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ap4y/UIBezierPath-SVG/HEAD/example/svg_test/TigerView.h -------------------------------------------------------------------------------- /example/svg_test/TigerView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ap4y/UIBezierPath-SVG/HEAD/example/svg_test/TigerView.m -------------------------------------------------------------------------------- /example/svg_test/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ap4y/UIBezierPath-SVG/HEAD/example/svg_test/ViewController.h -------------------------------------------------------------------------------- /example/svg_test/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ap4y/UIBezierPath-SVG/HEAD/example/svg_test/ViewController.m -------------------------------------------------------------------------------- /example/svg_test/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /example/svg_test/en.lproj/ViewController_iPad.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ap4y/UIBezierPath-SVG/HEAD/example/svg_test/en.lproj/ViewController_iPad.xib -------------------------------------------------------------------------------- /example/svg_test/en.lproj/ViewController_iPhone.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ap4y/UIBezierPath-SVG/HEAD/example/svg_test/en.lproj/ViewController_iPhone.xib -------------------------------------------------------------------------------- /example/svg_test/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ap4y/UIBezierPath-SVG/HEAD/example/svg_test/main.m -------------------------------------------------------------------------------- /example/svg_test/svg_test-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ap4y/UIBezierPath-SVG/HEAD/example/svg_test/svg_test-Info.plist -------------------------------------------------------------------------------- /example/svg_test/svg_test-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ap4y/UIBezierPath-SVG/HEAD/example/svg_test/svg_test-Prefix.pch -------------------------------------------------------------------------------- /example/svg_test/tiger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ap4y/UIBezierPath-SVG/HEAD/example/svg_test/tiger.js -------------------------------------------------------------------------------- /macSS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ap4y/UIBezierPath-SVG/HEAD/macSS.png -------------------------------------------------------------------------------- /photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ap4y/UIBezierPath-SVG/HEAD/photo.png --------------------------------------------------------------------------------