复制一般NSPasteboard的完整内容

时间:2016-10-12 03:20:03

标签: xcode macos cocoa nspasteboard

我需要将常规NSPasteboard 的完整内容复制到具有指定名称的粘贴板。我试过这段代码:

- (void)copyFromGeneralPasteboard {
NSMutableArray *archive = [[NSMutableArray alloc] init];
NSArray *typeArray = [[NSPasteboard generalPasteboard] types];
NSPasteboard *myPasteboard = [NSPasteboard pasteboardWithName:@"SpecialPb"];
[myPasteboard declareTypes:typeArray owner:self];

for (NSPasteboardItem *item in [[NSPasteboard generalPasteboard] pasteboardItems])
{
    NSPasteboardItem *archivedItem = [[NSPasteboardItem alloc] init];
    for (NSString *type in [item types])
    {
        NSData *data=[[item dataForType:type] mutableCopy];
        if (data) {
            [archivedItem setData:data forType:type];
        }
    }
    [archive addObject:archivedItem];
}
[[NSPasteboard generalPasteboard] clearContents];
[myPasteboard writeObjects:archive];
[archive removeAllObjects];}

我正在使用此代码进行检查。

- (void)SendToGeneralPasteboard {
NSMutableArray *archive = [[NSMutableArray alloc] init];
for (NSPasteboardItem *item in [[NSPasteboard pasteboardWithName:@"SpecialPb"] pasteboardItems])
{
    NSPasteboardItem *archivedItem = [[NSPasteboardItem alloc] init];
    for (NSString *type in [item types])
    {
        NSData *data=[[item dataForType:type] mutableCopy];
        if (data) {
            [archivedItem setData:data forType:type];
        }
    }
    [archive addObject:archivedItem];
}
[[NSPasteboard generalPasteboard] writeObjects:archive];}

因此,我使用IWork Pages执行了测试,它可以处理文本和属性文本。但是,当我尝试使用文本和图像运行时,程序只需复制并粘贴文本。此外,我试图使用图像运行,它也开始。 你能告诉我如何将我的代码用于任何类型的数据?感谢。

1 个答案:

答案 0 :(得分:0)

我意识到这是一个古老的问题,但是我今天正在处理类似的东西,所以我认为我会回答这个问题,以防其他人正在寻找。

由于您只是想将完整内容从一个剪贴板复制到另一个剪贴板,因此无需弄乱NSPasteboardItem。只需在一个粘贴板上迭代所有键入的数据,然后将其写入另一粘贴板即可。 Swift中的简洁示例:

func copyItemsFromPasteboard(_ fromPasteboard: NSPasteboard, toPasteboard: NSPasteboard) {
    for thisType in generalPB.types ?? [] {
        let thisData = generalPB.data(forType: thisType) ?? Data()
        toPasteboard.setData(thisData, forType: thisType)
    }
}

let generalPB = NSPasteboard(name: .generalPboard)
let customPB = NSPasteboard(name: NSPasteboard.Name(rawValue: "com.example.custom"))

copyItemsFromPasteboard(generalPB, toPasteboard: customPB)

我希望这对某人有帮助!