How to get Text from UI.InputField?

六月ゝ 毕业季﹏ 提交于 2019-11-27 07:59:51

问题


I want to retrieve the text from a UI InputField but I'm not sure how.


回答1:


You can do it by first getting reference to the gameObject somehow then getting the InputField component from it and taking the component's text variable:

    GameObject inputFieldGo = GameObject.Find("PathToTheGameObject");
    InputField inputFieldCo = inputFieldGo.GetComponent<InputField>();
    Debug.Log(inputFieldCo.text);


来源:https://stackoverflow.com/questions/28292841/how-to-get-text-from-ui-inputfield

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!