您好,登錄后才能下訂單哦!
using UnityEngine;
using UnityEngine.UI;
using System.Collections;
using UnityEngine.Events;
using System.Collections.Generic;
public class PersonalInformation : MonoBehaviour
{
void Start()
{
List<string> BtnsName = new List<string>();
BtnsName.Add("Text11(Clone)");
foreach (string btnsName in BtnsName)
{
GameObject btnObj = GameObject.Find(btnsName);
Button btn = btnObj.GetComponent<Button>();
btn.onClick.AddListener(delegate()
{
this.OnEmailInformation(btnObj);
});
}
}
public void OnEmailInformation(GameObject sender)
{
if (sender.name == "Text11(Clone)")
{
Debug.Log("添加成功");
}
}
}
//記住這里Text11(Colone)是實例化出來的物體名字,記住實例化出來的物體名字后面都需要加上(Colone)
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。