在IOS中读取RTFD数据
我需要读取 IOS 中 NSData 对象中的 RTFD 数据。在 MacOSX 中,我只是用 NSAttributedString 读取它们,但现在我知道 IOS 不支持它们。
attribString = [[NSAttributedString alloc] initWithRTFD:note documentAttributes:&dict];
有没有办法在IOS中只读取RTFD数据的文本?
I have RTFD data in NSData objects in IOS that I need to read. In MacOSX I just used to read them with NSAttributedString, but now I know that they are not supported in IOS.
attribString = [[NSAttributedString alloc] initWithRTFD:note documentAttributes:&dict];
Is there any way to read only the text of the RTFD data in IOS?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
iOS 中的 rtfd 类似于一个目录。如果您只想获取文本部分,您可以尝试:
希望它能有所帮助。
The rtfd in iOS is something like as a directory. If you only want to get the text part, you can try:
Hope it can help.