Skip to content

Commit

Permalink
chore: CommonCollectionViewCell 프로퍼티 접근 제어자 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
AhnSangHee committed Jun 9, 2022
1 parent 453ff45 commit 39a2f07
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions iOS/airbnb/Common/View/CommonCollectionViewCell.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ import UIKit

class CommonCollectionViewCell: UICollectionViewCell {

public let containerView: UIView = {
private(set) var containerView: UIView = {
let view = UIView()
view.translatesAutoresizingMaskIntoConstraints = false
return view
}()

public var imageView: UIImageView = {
private(set) var imageView: UIImageView = {
let imageView = UIImageView()
imageView.translatesAutoresizingMaskIntoConstraints = false
imageView.clipsToBounds = true
Expand Down

0 comments on commit 39a2f07

Please sign in to comment.