This is my .rtf file which i included into resources folder of my Xcode project
Code which i used for displaying contents of .rtf file into UITextView
NSString *filePath=[[NSBundle mainBundle]pathForResource:@"sample" ofType:@"rtf"];
NSString *contentString=[NSString stringWithContentsOfFile:filePath encoding:NSUTF8StringEncoding error:nil];
myTextViewObj.text=contentString;
Output which i got is
If anyone knows how to display tamil characters into UITextView from .rtf / .doc / .plist format files help me to get out of this issue.. Thanks in Advance...