Sharing using General pasteboard
Sharing using User pasteboard
Copy Image to General Pasteboard
UIPasteboard *appPasteBoard = [UIPasteboard generalPasteboard];
appPasteBoard.persistent = YES;
[appPasteBoard setString: @"String To Copy"];
UIPasteboard *appPasteBoard = [UIPasteboard generalPasteboard];
NSString *textCopied = [appPasteBoard string];
UIPasteboard *userPasteBoard =[UIPasteboard pasteboardWithName:@"UserDefined" create:YES];
userPasteBoard.persistent=YES;
[userPasteBoard setString:@"String To Copy"];
UIPasteboard *userPasteBoard =[UIPasteboard pasteboardWithName:@"UserDefined" create:YES];
userPasteBoard.persistent=YES;
NSString *textCopied=[userPasteBoard string];
UIImage * image=[UIImage imageWithContentsOfFile:@"FILE_PATH"];
UIPasteboard * pasteboard=[UIPasteboard generalPasteboard];
[pasteboard setImage:image];
No comments:
Post a Comment