I am pulling out some language sentences (in different languages) and displaying them in TableView (max 5 rows each row) and when user taps on any row, then I navigate user to a new screen and display full text there.
The problem that i am running into is, it is taking too much time to convert the characters to be visible properly on device.
I wrote the following code to convert the json text for each row:
NSString *msgDesc = [myContentsArray objectAtIndex:indexPath.row];
char const *cStr = [msgDesc cStringUsingEncoding:NSISOLatin1StringEncoding];
msgDesc = [NSString stringWithCString: cStr encoding:NSUTF8StringEncoding];
Thanks for the help.
Regards,
Reno Jones