Skip to content

Instantly share code, notes, and snippets.

@elnaqah
Created February 24, 2014 00:40
Show Gist options
  • Save elnaqah/9179668 to your computer and use it in GitHub Desktop.
Save elnaqah/9179668 to your computer and use it in GitHub Desktop.
load rtf file in UItextView
NSURL *rtfPath = [[NSBundle mainBundle] URLForResource: @"description_ar" withExtension:@"rtf"];
NSAttributedString *attributedStringWithRtf = [[NSAttributedString alloc] initWithFileURL:rtfPath options:@{NSDocumentTypeDocumentAttribute:NSRTFTextDocumentType} documentAttributes:nil error:nil];
self.textView.attributedText=attributedStringWithRtf;
@markst
Copy link

markst commented Jun 23, 2017

Thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment