private void OnDataChanged() { Content.DestroyAllChild(); mData.Model.TodoItems.ForEach(todoItem => { UITodoItem .Instantiate() .Parent(Content) .LocalIdentity() .ApplySelfTo(selfItem => { selfItem.Init(todoItem); }) .Show(); }); }
void Awake() { mTodoItemPrototype = transform.Find("TodoItemPrototype").GetComponent <UITodoItem>(); }