0

I have a URL:

 <pre><p><img scr="...upload/tmp/Группа.jpg" border="0" width="300" height="234"/></p>
</pre> 

but UIWebView does not load the picture because there are Cyrillic symbols.

How can I fix it?

DJ Burb
  • 2,346
  • 2
  • 29
  • 38

2 Answers2

0

Your problem is encoding. You will have to specify different encoding since UIWebView by default takes iso-8859-1. I think that you will find solution for this problem on the link :

How to change the character encoding in UIWebView?

Please check second answer. You need ISO-8859-5 charset ( http://a4esl.org/c/charset.html )

Community
  • 1
  • 1
Miknash
  • 7,888
  • 3
  • 34
  • 46
0

Encode file names using percent encoding.

pronebird
  • 12,068
  • 5
  • 54
  • 82