如何以编程方式访问剪贴板数据? [英] How to access clipboard data programmatically ?

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

问题描述

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

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

推荐答案

苹果拥有<一个href=\"http://developer.apple.com/library/mac/#documentation/Cocoa/Conceptual/PasteboardGuide106/Introduction/Introduction.html#//apple_ref/doc/uid/TP40008099\">Pasteboard编程指南你正在寻找的主类是<一个href=\"http://developer.apple.com/library/mac/#documentation/Cocoa/Reference/ApplicationKit/Classes/NSPasteboard_Class/Reference/Reference.html#//apple_ref/occ/cl/NSPasteboard\">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...

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

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆