Tagged Questions

0
votes
1answer
143 views

Application crashing due to unicode characters in string

I am making an application in which I have to store data from remote db into local sqlite3 db. Problem is - when any string to be inserted contains unicode character such as: \U00a0 or \U2022 ...
0
votes
1answer
991 views

Escaped unicode to unicode character in Cocoa

I get from a NSURLConnection a NSData object which I convert with [[NSMutableString alloc] initWithData:[self urlData] encoding:NSUTF8StringEncoding] to a NSMutableString. After some "revision" I ...