views:

169

answers:

1

Hi,

In my application I am trying to read some data from sqlite database into UITextView.

This text has double quotes as well as single quotes, for ex:

she said : "Katie's purse has been lost"

when I do this, I get strange characters in place of double and single quotes. Please help me with a solution to scrub these characters off.

Thanks.

A: 

If you get one strange character (or set of characters) replacing " and another replacing ', you can just scan the string and replace. If you aren't, then:

  1. That's very strange, and
  2. You should post your code.
David Seiler