UICollectionViewCells中selectedBackGroundView是显示在contentView上方还是下方?
Is the selectedBackGroundView shown above or below contentView in UICollectionViewCells?
我一直在网上四处寻找,试图找出 UICollectionViewCell
的视图层次结构。
我知道它有一个 contentView
、一个 selectedBackgroundView
和 backgroundView
。
据我了解 backgroundView
在最后面。但是在 UICollectionViewCell
.
的情况下 selectedBackgroundView
是在 contentView
后面还是前面
此视图层次结构的顺序是否与 UITableViewCell
相同?
selectedBackgroundView
在contentView
后面。来自 Apple 文档:
When the cell is selected, this view is layered above the
backgroundView and behind the contentView.
Apple 文档说“cell 管理两个背景视图,显示处于选中和未选中状态的单元格。”因此 backGroundView
和 selectedbackgroundView
两者在内容视图的后面。选择单元格时,selectedbackgroundView
显示在背景视图的正上方。来源 https://developer.apple.com/reference/uikit/uicollectionviewcell
我一直在网上四处寻找,试图找出 UICollectionViewCell
的视图层次结构。
我知道它有一个 contentView
、一个 selectedBackgroundView
和 backgroundView
。
据我了解 backgroundView
在最后面。但是在 UICollectionViewCell
.
selectedBackgroundView
是在 contentView
后面还是前面
此视图层次结构的顺序是否与 UITableViewCell
相同?
selectedBackgroundView
在contentView
后面。来自 Apple 文档:
When the cell is selected, this view is layered above the backgroundView and behind the contentView.
Apple 文档说“cell 管理两个背景视图,显示处于选中和未选中状态的单元格。”因此 backGroundView
和 selectedbackgroundView
两者在内容视图的后面。选择单元格时,selectedbackgroundView
显示在背景视图的正上方。来源 https://developer.apple.com/reference/uikit/uicollectionviewcell