復制字符串到剪貼板
UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
pasteboard.string = self.label.text;
復制圖片到剪貼板
UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
pasteboard.image = image;
復制字符串到剪貼板
UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
pasteboard.string = self.label.text;
復制圖片到剪貼板
UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
pasteboard.image = image;