Skip to content

Instantly share code, notes, and snippets.

@reiji1020
Created January 25, 2013 15:55
Show Gist options
  • Save reiji1020/4635488 to your computer and use it in GitHub Desktop.
Save reiji1020/4635488 to your computer and use it in GitHub Desktop.
UIPasteboard *pasteboard = [UIPasteboard PasteboardWithName:"DataSet" create:yes];
NSString *ds = @"aaaa";
[pasteboard setValue:ds forPasteboardType:@"DataSet.text"];
NSURL *url = [NSURL URLWithString:@"DataSet:"];
[[UIApplication sharedApplication]openURL:url];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment