Reputation: 739
Trying to find a way to display/render SVG files without using the WebView object. I've found ObjC lib called SVGKit. I'm wondering how reliable SVGKit is? Does it have monotouch bindings? what are my options to display vector graphics on iPhone/iPad? Can this be done through using the OpenGL engine?
Upvotes: 4
Views: 1450
Reputation: 19
Check out Codeautomat. It can convert SVG files to Objective-C. It is different from SVGKit in the sense that it does not work in runtime; it basically compiles your SVG to code statically.
Upvotes: 1
Reputation: 27343
I can't personally attest to how reliable SVGKit is, but scanning its history on GitHub, it passes most of my "will I hate myself for using this project?" sanity checks:
I don't know of any other alternatives for vector graphics on iOS. OpenGL doesn't have any built-in vector capabilities. I'm sure it could be persuaded to draw graphics that you decode some other way--it sounds like a lot of work, though.
Upvotes: 1