protected override void ClearUIComponents() { Background = null; UITopStatus = null; BtnGold = null; BtnDiamand = null; Contents = null; UIShopGold = null; mData = null; }
/// <summary> /// 显示金币商品列表 /// </summary> public void ShowProductGemList() { foreach (ProductGoldModel model in ProductGoldData.ProductGoldDataList) { UIShopGold.Instantiate() .Parent(Contents) .LocalIdentity() .ApplySelfTo(self => { self.ProductGoldModel = model; self.Show(); }); } }