将阴影添加到collectionViewCell

时间:2018-05-24 18:26:10

标签: ios swift xcode user-interface uicollectionview

我想像我这样向collectionViewItem开发阴影: enter image description here

我怎么能实现这个目标? 我使用的是UICollectionView

1 个答案:

答案 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