Skip to content

Instantly share code, notes, and snippets.

View imack's full-sized avatar

Ian MacKinnon imack

View GitHub Profile
Basically, UIPasteBoard allows us to share data to other application. Below is an example of UIpasteBoard usage.
COPY
UIPasteboard *appPasteBoard = [UIPasteboard generalPasteboard];
appPasteBoard.persistent = YES;
[appPasteBoard setString:@"STRING TO COPY"];
PASTE