标签:
将文本复制到剪切板中其实是有接口的,需要借助TextEditor这个类,代码如下:
TextEditor
TextEditor te = new TextEditor(); te.content = new GUIContent(outputTime.ToString()); te.SelectAll(); te.Copy();
Unity3d 开发(八)复制内容到剪切板
原文地址:http://blog.csdn.net/fansongy/article/details/50688396