hi all i am developing RSS application in which title are in Japanese language. i have grasped and display title in table cell but it is just showing me ? marks. ie ????????????? how to tackle this...
the code by which i am recieving title and displaying it in table cell is below.
int blogEntryIndex1 = [indexPath indexAtPosition: [indexPath length] -1];
NSString *titlestring =[[blogEntries objectAtIndex: blogEntryIndex1] objectForKey: @"title"];
cell.textLabel.text=titlestring;
help please...