コピー
1 2 3 4 5 6 7 |
UIPasteboard *pasteboard = [UIPasteboard generalPasteboard]; //文字列のコピー [pasteboard setValue:@"文字列" forPasteboardType:@"public.text"]; //画像のコピー UIImage *image = [UIImage imageNamed:@"hoge.jpg"] [pasteboard setValue:image forPasteboardType:@"public.image"]; |
ペースト
1 2 3 4 5 6 7 |
UIPasteboard *pasteboard = [UIPasteboard generalPasteboard]; // 文字列を取り出す。 NSString *string = [pasteboard valueForPasteboardType:@"public.text"]; // 画像を取り出す。 UIImage *image = [pasteboard valueForPasteboardType:@"public.image"]; |