как мне установить угловой радиус на моем UICollectionView?
Просто чтобы прояснить, я имею в виду сам CollectionView, а не ячейки.
let theCollectionView: UICollectionView = {
let v = UICollectionView(frame: CGRect.zero, collectionViewLayout: UICollectionViewFlowLayout())
v.translatesAutoresizingMaskIntoConstraints = false
v.backgroundColor = .white
v.contentInsetAdjustmentBehavior = .always
return v
}()