UIPasteboard *board = [UIPasteboard generalPasteboard];
[board setValue:@”文字列” forPasteboardType:@”public.utf8-plain-text”];
文字列には改行も含められるのでテキストフィールド(UITextField)の内容をすべてコピーすることも可能です。
Just another WordPress site
UIPasteboard *board = [UIPasteboard generalPasteboard];
[board setValue:@”文字列” forPasteboardType:@”public.utf8-plain-text”];
文字列には改行も含められるのでテキストフィールド(UITextField)の内容をすべてコピーすることも可能です。