using System; using System.Collections; using System.Collections.Generic; using UnityEngine; public class UIView : MonoBehaviour { //类型 public UIViewType ViewType; //public string ViewName; public Action OnShow; public Action OnHide; public virtual void Awake() { UIManager.Instance?.AddView(this); } public virtual void OnDestroy() { UIManager.Instance?.RemoveView(this); } /// /// 显示 /// public virtual void Show() { Refresh(); if (!gameObject.activeSelf) { gameObject.SetActive(true); if (OnShow != null) { OnShow(); } // 设置层级到最上层 transform.SetAsLastSibling(); } } /// /// 隐藏 /// public virtual void Hide() { //显示的情况下才隐藏 if (gameObject.activeSelf) { gameObject.SetActive(false); if (OnHide != null) { OnHide(); } } } /// /// 刷新 /// public virtual void Refresh() { } public virtual void Show(object data) { Show(); } public GameObject Find(string name) { return transform.Find(name).gameObject; } public T Find(string name) { return transform.Find(name).GetComponent(); } } public class UIView : UIView where TReactiveModel : ISetData, new() where TModel : class { /// /// 数据 /// protected TReactiveModel DataSource { get; private set; } = new TReactiveModel(); /// /// 显示 /// /// public override void Show(object data) { Debug.Log(data.GetHashCode()); DataSource.SetData(data as TModel); base.Show(data); } } //TODO 修改名字为IData 新增GetData方法 public interface ISetData { //新增属性GetData SetData 时修改此属性的值 //T Data { get; set; } void SetData(T t); }