小编Dip*_*ara的帖子

如何在NSPasteBoard cocoa os x中复制图像?

I have tried this one , but not working

NSPasteboard *pboard  = [NSPasteboard generalPasteboard];
[pboard declareTypes: [NSMutableArray arrayWithObject:
                       NSTIFFPboardType] owner: nil];
[pboard setData:[imgView.image TIFFRepresentation] forType:
NSData *data = [[NSPasteboard generalPasteboard] dataForTyp
if (data) {
    imgView.image=[imgView.image initWithData:data];
}
Run Code Online (Sandbox Code Playgroud)

我通过Apple Bonjour服务将此图像发送到iPhone.

任何帮助将不胜感激

macos cocoa

3
推荐指数
1
解决办法
3280
查看次数

标签 统计

cocoa ×1

macos ×1