TinCanObjC icon indicating copy to clipboard operation
TinCanObjC copied to clipboard

Supporting special characters

Open Kujey opened this issue 12 years ago • 0 comments

Hello, i'm using your framework and i noticed a bug when sending special characters inside the Json ( ex: " é ").

It seems to be a simple encoding issue, and i solved it by doing the following : In your TCLRS.m I replaced "[NSData dataWithBytes: [requestString UTF8String] length: [requestString length]];" by "[requestString dataUsingEncoding:NSUTF8StringEncoding];"

Kujey avatar Oct 02 '13 09:10 Kujey