为CollectionView添加边框

时间:2019-04-03 03:58:14

标签: swift xcode

我有一个包含多个单元格的集合视图,我想出了如何向每个单元格添加边框,但是仍然坚持为CollectionView添加边框(预期结果)。

当前,我将按钮放置在CollectionView的外部,但是不知道如何使它看起来像预期的结果。

Current view

Expected Result

2 个答案:

答案 0 :(得分:0)

您可以尝试这样:

@IBOutlet var CollectionView: UICollectionView!

 override func viewDidLoad() {
 super.viewDidLoad()

CollectionView.delegate = self
CollectionView.dataSource = self

CollectionView.layer.borderColor = UIColor.gray.cgColor //change to required color
CollectionView.layer.borderWidth = 5 //change to required borderwidth
}

答案 1 :(得分:0)

要设置集合视图边框,您可以按照以下步骤

collectionView.layer.borderColor = UIColor.gray.cgColor  
collectionView.layer.borderWidth = 5  

要设置细胞位置到中间,您需要设置细胞昆虫。 您可以从此从情节提要中轻松设置细胞昆虫。更新所需的Section Insects值。

enter image description here