Objective C - How to create rtf from NSAttributedString

大城市里の小女人 提交于 2019-12-03 16:27:49

You want to use -dataFromRange:documentAttributes:error:

NSAttributedString *str = [[NSAttributedString alloc] initWithString:@"YOLO" attributes:nil];
NSData *data = [str dataFromRange:(NSRange){0, [str length]} documentAttributes:@{NSDocumentTypeDocumentAttribute: NSRTFTextDocumentType} error:NULL];
[data writeToFile:@"/me.rtf" atomically:YES];

Of course you'd want to have some attributes instead of "YOLO", but you get the idea.

Also, if you're looking to simply write this to disk, then fileWrapperFromRange:documentAttributes:error: might even be a better option. You can find more about reading and writing from the Attributed String Programming Guide

Do it by below way:

NSData *rtfdata = [attributedText RTFDFromRange:NSMakeRange(0, attributedText.length)
                documentAttributes:nil];
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!