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

问题描述

这怎么可能访问的MAC剪贴板数据编程?

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

推荐答案

苹果拥有Pasteboard编程指南你正在寻找的主类是NSPasteboard

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