【Unity3D自学记录】将文字复制至系统剪切板

首先呢,我们创建一个脚本

public UILabel LabelText;
//把UILabel拖给LabelText
void CopyText(){
TextEditor te = new TextEditor();//很强大的文本工具
te.content = new GUIContent(LabelText.text);
te.OnFocus();
te.Copy();
}


UILabel必须要导入NGUI,自行选择。

触发一下CopyText()这个方法就可以复制LabelText这个Label中的内容。

你可能感兴趣的:(unity3d)