Hi,
I am trying to copy an image from my app into uipasteboard and paste the image into another app (ie: sms app). I am applying the code below but there is no image show in sms app. May I know is there any problem with the code below?
-(IBAction)copyImageToPasteBoard{
UIPasteboard *appPasteBoard = [UIPasteboard pasteboardWithName:@"CopyFrom"
create:YES];
appPasteBoard.persistent = YES;
NSData *data = UIImagePNGRepresentation([UIImage imageNamed:@"Old-Time-Photo.jpg"]);
[appPasteBoard setData:data forPasteboardType:@"com.appshop.copyfrom.imagedata "];
}
Thanks.