RTF file
を に表示する必要がありますUITextView
。私のコードは以下のようになります:
私の .h ファイル:
@property (strong, nonatomic) IBOutlet UITextView *creditsTextView;
私の .m ファイル
@synthesize creditsTextView;
- (void)viewDidLoad {
[super viewDidLoad];
NSData *creditsData = [[NSBundle mainBundle] pathForResource:@"Credits" ofType:@"rtf"];
NSAttributedString *attrString;
NSDictionary *docAttributes;
attrString = [[NSAttributedString alloc]
initWithRTF: creditsData documentAttributes: &docAttributes];
}
このコードにより、次のエラー メッセージが表示されます。
で
*creditsData : Incompatible pointer types 'NSData *' with expression of type 'NSString *'
そして
initWithRTF : No visible @interface for 'NSAttributedString' declares the selector 'initWithRTF:documentAttributes:'
これら2つのエラーを修正するにはどうすればよいですか?