在iOS中读/写NSAttributedString的简单方法?

在Mac OS X中,还有AppKit添加,它支持读取和写入NSAttributedString作为RTF格式。

相当于iOS? 我应该自己动手吗?

你只想将字符串保存到磁盘上吗? 我会使用NSCoding。

要将对象写入文件:

result = [NSKeyedArchiver archiveRootObject:attributedString toFile:archivePath]; 

要从文件中读取对象:

 attributedString = [NSKeyedUnarchiver unarchiveObjectWithFile:archivePath]; 

您可以使用符合“NSCoding”的任何对象执行此操作,并且可以非常轻松地将NSCoding支持添加到您自己的类中。 更多信息可在以下url找到:

http://developer.apple.com/library/mac/#documentation/Cocoa/Conceptual/Archiving/Archiving.html%23//apple_ref/doc/uid/10000047-SW1