美文网首页
Toggle触发回调

Toggle触发回调

作者: 沉麟 | 来源:发表于2019-05-25 16:01 被阅读0次
    if (target.GetComponent<Toggle>() != null)
            {
                target.GetComponent<Toggle>().onValueChanged.AddListener((bool value) => OnToggleClick(target.GetComponent<Toggle>(), value));
            }
    public void OnToggleClick(Toggle toggle, bool value)
        {
            if (!AppData.Instance.completeGuids.Contains(id))
            {
                AppData.Instance.completeGuids.Add(id);
                //Debug.LogError("OnToggleClick:" + id);
            }
            Disable();
        }
    

    相关文章

      网友评论

          本文标题:Toggle触发回调

          本文链接:https://www.haomeiwen.com/subject/zphzzqtx.html