How do I convert the string "ff \" ff "to NSURL?
It turns out like this:
let str = "ff\"ff" //ff"ff let url = NSURL(string: str) //nil And it is necessary that print (url) give out ff "ff.
Source: https://ru.stackoverflow.com/questions/604700/
All Articles