1. 程式人生 > >獲取NGUI的輸入框內容的方法

獲取NGUI的輸入框內容的方法

研究了一下NGUI如何獲取輸入框內容的方法,簡單總結如下

NGUI獲取UIInput輸入框輸入內容的方法,指令碼如下:
using UnityEngine;
using System.Collections;

public class LoginController : MonoBehaviour {
    public UIInput usernameLabel;  //使用者名稱輸入框物件
    public UIInput passwordLabel;  //密碼輸入框物件
    public void Login() {
	string username = usernameLabel.value;  //用value屬性即可獲取
	string password = passwordLabel.value;  //用value屬性即可獲取
	Debug.Log ("使用者名稱:" + username + "  密碼:" + password);
    }
}