|
@@ -47,8 +47,6 @@ class OrderCommentAddImgCollectionCell: UICollectionViewCell {
|
|
|
override init(frame: CGRect) {
|
|
|
super.init(frame: frame)
|
|
|
backgroundColor = UIColor.white
|
|
|
- cornerRadius = 4
|
|
|
- masksToBounds = true
|
|
|
setupViews()
|
|
|
setupLayouts()
|
|
|
|
|
@@ -87,6 +85,8 @@ class OrderCommentAddImgCollectionCell: UICollectionViewCell {
|
|
|
|
|
|
private lazy var picImageView: UIImageView = {
|
|
|
let picImageView = UIImageView()
|
|
|
+ picImageView.cornerRadius = 4
|
|
|
+ picImageView.masksToBounds = true
|
|
|
return picImageView
|
|
|
}()
|
|
|
|