Skip to content

Instantly share code, notes, and snippets.

@reiji1020
Last active December 11, 2015 17:29
Show Gist options
  • Save reiji1020/4635262 to your computer and use it in GitHub Desktop.
Save reiji1020/4635262 to your computer and use it in GitHub Desktop.
UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
NSString *ds= @"hoge";
[pasteboard setValue:ds forPasteboardType:@"DataSet.text"];
// DataSetアプリのURLスキームを指定する.
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