如何以编程方式访问剪贴板数据

如何以编程方式访问剪贴板数据

本文介绍了如何以编程方式访问剪贴板数据?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何在Mac上以编程方式访问剪贴板数据?

How is it possible to access clipboard data on the Mac programmatically?

推荐答案

Apple具有,您要查找的主要类是

Apple has a Pasteboard Programming Guide the main class you are looking for is NSPasteboard

读取字符串的示例是

NSPasteboard *pasteboard = <#Get a pasteboard#>;
NSArray *classes = [[NSArray alloc] initWithObjects:[NSString class], nil];
NSDictionary *options = [NSDictionary dictionary];
NSArray *copiedItems = [pasteboard readObjectsForClasses:classes options:options];
if (copiedItems != nil) {
    // Do something with the contents...

这篇关于如何以编程方式访问剪贴板数据?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-19 16:29