如果要给组件挂上UIHomePage脚本,则给它继承一下UIWindow
public class AddressPageUI : UIWindow
{
}
然后在上面的UIManager注册函数即可,
UIResources.Add(typeof(UIHomePage), new UIElement() { Resources = "Prefabs/UI/HomePage/UIHomePage", Cache= true });
加载时
UIManager .Instance.Show<AddressPageUI >();
关闭时
UIManager .Instance.Close<AddressPageUI>();
如果UI上有关闭确定等按钮,直接管理基类中的函数即可,无需另外编写函数