UIPasteboard 粘贴板

来源:互联网 发布:mac中如何将文件隐藏 编辑:程序博客网 时间:2024/05/22 06:05
<pre name="code" class="objc">// 复制文字到粘贴板 
 UIPasteboard *pasteboard = [UIPasteboard generalPasteboard]; 
 pasteboard.string = self.label.text;


0 0