我有一个要显示在项目中的.svg图像文件。
我尝试使用UIImageView,它适用于.png和.jpg图像格式,但不适用于.svg扩展名。有什么办法可以使用UIWebView或UIImageView显示.svg图像?
试试这个代码
var path: String = NSBundle.mainBundle().pathForResource("nameOfFile", ofType: "svg")! var url: NSURL = NSURL.fileURLWithPath(path) //Creating a URL which points towards our path //Creating a page request which will load our URL (Which points to our path) var request: NSURLRequest = NSURLRequest(URL: url) webView.loadRequest(request) //Telling our webView to load our above request