我需要从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可以使用什么?