gpt4 book ai didi

macos - 将 RTF 文件与 Cocoa 合并

转载 作者:行者123 更新时间:2023-12-03 17:41:12 24 4
gpt4 key购买 nike

如何做到这一点?我知道仅仅合并 NSData 是行不通的。

最佳答案

使用 NSAttributedString 应该可以工作,如下所示的代码

这是将多个 RTF 文件合并在一起的一种非常快速但肮脏的方法

- (void)mergeRTF:(NSURL*)rtf1 :(NSURL*)rtf2 :(NSURL*)merged {
NSMutableDictionary *options = [NSMutableDictionary dictionary];
[options setObject:[NSNumber numberWithUnsignedInteger:NSUTF8StringEncoding]
forKey:NSCharacterEncodingDocumentOption];
NSDictionary *docAttrs = nil;
NSError* error = nil;

NSAttributedString *rtfText1 = [[NSAttributedString alloc] initWithURL:rtf1
options:options
documentAttributes:&docAttrs
error:&error];

NSAttributedString *rtfText2 = [[NSAttributedString alloc] initWithURL:rtf2
options:options
documentAttributes:&docAttrs
error:&error];
NSMutableAttributedString* whole = [[NSMutableAttributedString alloc] initWithAttributedString:rtfText1];
[whole appendAttributedString:rtfText2];
NSData* data = [whole RTFFromRange:NSMakeRange(0, whole.length) documentAttributes:nil];

[data writeToURL:merged atomically:YES];
}

关于macos - 将 RTF 文件与 Cocoa 合并,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14013673/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com