UIStackView : Is it really necessary to call both removeFromSuperView and removeArrangedSubview to remove a subview?

后端 未结 8 828
遥遥无期
遥遥无期 2021-02-02 05:04

From the UIStackView Class Reference

In removeArrangedSubview:

To prevent the view from appearing on screen after calling the stack’s removeArrang

8条回答
  •  滥情空心
    2021-02-02 05:30

    To remove a arrangedSubview from a stackview is

    // To remove it from the view hierarchy
       subView.removeFromSuperview()
    

提交回复
热议问题