これは、Xcode プロジェクトの resources フォルダーに含めた .rtf ファイルです。
.rtf ファイルの内容を UITextView に表示するために使用したコード
NSString *filePath=[[NSBundle mainBundle]pathForResource:@"sample" ofType:@"rtf"];
NSString *contentString=[NSString stringWithContentsOfFile:filePath encoding:NSUTF8StringEncoding error:nil];
myTextViewObj.text=contentString;
私が得た出力は
タミル語の文字を .rtf / .doc / .plist 形式のファイルから UITextView に表示する方法を知っている人がいれば、この問題を解決するのに役立ちます.. よろしくお願いします...