I have to create the view in which I have to open .svg extension file in iOS project.
I have some doubts for this .svg extension
- Can we open .svf file directly in iOS like .png or any other images?
- Or we have to use any different thing to open this file.
You can’t load .svg as an image, but you can load a
UIWebViewwith an SVG as content since the iOS browser can render SVG.See also these questions: How to render SVG images in iphone without uiwebview?, How can I load vector image directly with iPhone SDK?, how to render all kind of svg files in iphone?