tags:

views:

610

answers:

2

The iPhone app I'm working on uses html help files and special characters such as

  ü  and ê

are being mangled my iPhone's mobile Safari. Anything I can do to correct this?

+3  A: 

If you're using XHTML, ensure that the content of your files really is the encoding specified in the doctype. If you're using just plain HTML, consider using XHTML instead, or

NilObject
+1  A: 

Have you tried using numerical character references? Alternatively, perhaps you can use a <meta http-equiv="content-type" ... element. Also, maybe there's a better way to tell mobile Safari the character encoding of HTML files (equivalent to the server's HTTP Content-Type header)

Daniel Dickison