我想像我这样向collectionViewItem
开发阴影:
我怎么能实现这个目标?
我使用的是UICollectionView
。
答案 0 :(得分:0)
使用5(或其他)的左,右,上,下约束为单元格添加视图。
将所有单元格内容添加到该视图中
为视图创建一个插座
式:
yourView.layer.borderColor = UIColor(red:0, green:0, blue:0, alpha:0.5).cgColor
yourView.layer.shadowOffset = CGSize(width: 0, height: 2)
yourView.layer.shadowColor = UIColor(red:0, green:0, blue:0, alpha:0.5).cgColor
yourView.layer.shadowOpacity = 0.5
yourView.layer.shadowRadius = 3
如果你想要圆角:
yourView.layer.cornerRadius = 8