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];
}
我正在通过 Apple Bonjour 服务将此图像发送到 iPhone。
任何帮助将不胜感激