How do I remove/decode URL percent encoding?
问题 I want to take a url and convert it to a more readable format. For example I have the following link: http://en.wikipedia.org/wiki/S%C3%A1ndor_Font I take away the unnecessary parts and am left with "S%C3%A1ndor_Font" as a NSString . Is there any sort of way to convert this into "Sándor Font" (what it actually should be), without having to type out every single combination of special characters and replacing each part of the string? To demonstrate how I want to use this, I wrote the following