从iOS 6中的RTF文本文件创建NSAttributedString

时间:2013-12-03 23:51:10

标签: ios objective-c ios6 nsattributedstring

我需要从NSAttributedString文本文件创建.rtf,以便维护文本属性。在iOS 7中,我使用此代码:

NSError *error;
NSURL *stringURL = [[NSBundle mainBundle] URLForResource:@"Text" withExtension:@".rtf"];
NSAttributedString *myAttributedText = [[NSAttributedString alloc] initWithFileURL:stringURL options:nil documentAttributes:nil error:&error];

但是,initWithFileURL:options:documentAttributes:error:仅适用于iOS 7.0

iOS 6可以使用什么?

0 个答案:

没有答案