├── Classes ├── PocketSVG.h ├── PocketSVG.m ├── TGDrawSvgPathView.h └── TGDrawSvgPathView.m ├── LICENSE ├── README.md ├── SVGPathDrawing.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── SVGPathDrawing.xccheckout │ └── xcuserdata │ │ └── thibaultguegan.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── thibaultguegan.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── SVGPathDrawing.xcscheme │ └── xcschememanagement.plist ├── SVGPathDrawing ├── AppDelegate.h ├── AppDelegate.m ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── LaunchImage.launchimage │ │ └── Contents.json ├── Resources │ └── Assets │ │ ├── cloud.svg │ │ ├── criss6.svg │ │ ├── dropbox10.svg │ │ ├── iceland.svg │ │ ├── replay2.svg │ │ └── world17.svg ├── SVGPathDrawing-Info.plist ├── SVGPathDrawing-Prefix.pch ├── ViewController.h ├── ViewController.m ├── ViewController.xib ├── en.lproj │ └── InfoPlist.strings └── main.m ├── TGDrawSvgPathView.podspec └── demosvg.gif /Classes/PocketSVG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibolte/TGDrawSvgPathView/HEAD/Classes/PocketSVG.h -------------------------------------------------------------------------------- /Classes/PocketSVG.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibolte/TGDrawSvgPathView/HEAD/Classes/PocketSVG.m -------------------------------------------------------------------------------- /Classes/TGDrawSvgPathView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibolte/TGDrawSvgPathView/HEAD/Classes/TGDrawSvgPathView.h -------------------------------------------------------------------------------- /Classes/TGDrawSvgPathView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibolte/TGDrawSvgPathView/HEAD/Classes/TGDrawSvgPathView.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibolte/TGDrawSvgPathView/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibolte/TGDrawSvgPathView/HEAD/README.md -------------------------------------------------------------------------------- /SVGPathDrawing.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibolte/TGDrawSvgPathView/HEAD/SVGPathDrawing.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SVGPathDrawing.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibolte/TGDrawSvgPathView/HEAD/SVGPathDrawing.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SVGPathDrawing.xcodeproj/project.xcworkspace/xcshareddata/SVGPathDrawing.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibolte/TGDrawSvgPathView/HEAD/SVGPathDrawing.xcodeproj/project.xcworkspace/xcshareddata/SVGPathDrawing.xccheckout -------------------------------------------------------------------------------- /SVGPathDrawing.xcodeproj/project.xcworkspace/xcuserdata/thibaultguegan.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibolte/TGDrawSvgPathView/HEAD/SVGPathDrawing.xcodeproj/project.xcworkspace/xcuserdata/thibaultguegan.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /SVGPathDrawing.xcodeproj/xcuserdata/thibaultguegan.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibolte/TGDrawSvgPathView/HEAD/SVGPathDrawing.xcodeproj/xcuserdata/thibaultguegan.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /SVGPathDrawing.xcodeproj/xcuserdata/thibaultguegan.xcuserdatad/xcschemes/SVGPathDrawing.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibolte/TGDrawSvgPathView/HEAD/SVGPathDrawing.xcodeproj/xcuserdata/thibaultguegan.xcuserdatad/xcschemes/SVGPathDrawing.xcscheme -------------------------------------------------------------------------------- /SVGPathDrawing.xcodeproj/xcuserdata/thibaultguegan.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibolte/TGDrawSvgPathView/HEAD/SVGPathDrawing.xcodeproj/xcuserdata/thibaultguegan.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /SVGPathDrawing/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibolte/TGDrawSvgPathView/HEAD/SVGPathDrawing/AppDelegate.h -------------------------------------------------------------------------------- /SVGPathDrawing/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibolte/TGDrawSvgPathView/HEAD/SVGPathDrawing/AppDelegate.m -------------------------------------------------------------------------------- /SVGPathDrawing/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibolte/TGDrawSvgPathView/HEAD/SVGPathDrawing/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SVGPathDrawing/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibolte/TGDrawSvgPathView/HEAD/SVGPathDrawing/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /SVGPathDrawing/Resources/Assets/cloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibolte/TGDrawSvgPathView/HEAD/SVGPathDrawing/Resources/Assets/cloud.svg -------------------------------------------------------------------------------- /SVGPathDrawing/Resources/Assets/criss6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibolte/TGDrawSvgPathView/HEAD/SVGPathDrawing/Resources/Assets/criss6.svg -------------------------------------------------------------------------------- /SVGPathDrawing/Resources/Assets/dropbox10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibolte/TGDrawSvgPathView/HEAD/SVGPathDrawing/Resources/Assets/dropbox10.svg -------------------------------------------------------------------------------- /SVGPathDrawing/Resources/Assets/iceland.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibolte/TGDrawSvgPathView/HEAD/SVGPathDrawing/Resources/Assets/iceland.svg -------------------------------------------------------------------------------- /SVGPathDrawing/Resources/Assets/replay2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibolte/TGDrawSvgPathView/HEAD/SVGPathDrawing/Resources/Assets/replay2.svg -------------------------------------------------------------------------------- /SVGPathDrawing/Resources/Assets/world17.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibolte/TGDrawSvgPathView/HEAD/SVGPathDrawing/Resources/Assets/world17.svg -------------------------------------------------------------------------------- /SVGPathDrawing/SVGPathDrawing-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibolte/TGDrawSvgPathView/HEAD/SVGPathDrawing/SVGPathDrawing-Info.plist -------------------------------------------------------------------------------- /SVGPathDrawing/SVGPathDrawing-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibolte/TGDrawSvgPathView/HEAD/SVGPathDrawing/SVGPathDrawing-Prefix.pch -------------------------------------------------------------------------------- /SVGPathDrawing/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibolte/TGDrawSvgPathView/HEAD/SVGPathDrawing/ViewController.h -------------------------------------------------------------------------------- /SVGPathDrawing/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibolte/TGDrawSvgPathView/HEAD/SVGPathDrawing/ViewController.m -------------------------------------------------------------------------------- /SVGPathDrawing/ViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibolte/TGDrawSvgPathView/HEAD/SVGPathDrawing/ViewController.xib -------------------------------------------------------------------------------- /SVGPathDrawing/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /SVGPathDrawing/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibolte/TGDrawSvgPathView/HEAD/SVGPathDrawing/main.m -------------------------------------------------------------------------------- /TGDrawSvgPathView.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibolte/TGDrawSvgPathView/HEAD/TGDrawSvgPathView.podspec -------------------------------------------------------------------------------- /demosvg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tibolte/TGDrawSvgPathView/HEAD/demosvg.gif --------------------------------------------------------------------------------