1 GameObject obj = Resources.Load<GameObject>("btn_info_test"); // 要動態添加的物體 2 GameObject child = GameObject.Instantiate(obj); // 實例化GameObject 3 child.transform.parent = tran; // 設置父物體 4 //child.GetComponent<RectTransform>().pivot = obj.GetComponent<RectTransform>().pivot; 5 // 設置anchors min的偏移量 ,就是anchors min 到 控件左下角的偏移量 6 child.GetComponent<RectTransform>().offsetMin = obj.GetComponent<RectTransform>().offsetMin; 7 // 設置anchors min的偏移量 , 就是anchors max 到 控件右上角的偏移量 8 child.GetComponent<RectTransform>().offsetMax = obj.GetComponent<RectTransform>().offsetMax;