Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道我必须在IB操作按钮下编写什么代码,这样当我单击称为复制的按钮时,它将复制指定文本视图中的文本,然后当您单击粘贴时,它将粘贴一些文本指定的文本视图。
我在这方面找不到任何东西。有没有人有一些代码或一个好的教程的链接?
谢谢
查看UIPasteboard类参考。
UIPasteboard
-(IBAction)copyText { [[UIPasteboard generalPasteboard] setString:myTextView.text]; }
myTextView2.text = [[UIPasteboard generalPasteboard] string];