[iOS] 상속을 활용해서 모든 셀에 라운드 효과 주기

RudinP·2024년 6월 22일
0

Study

목록 보기
235/258

1. cell class 생성

2. 해당 클래스의 awakeFromNib에 cornerRadius 속성 설정

import UIKit

class RoundedCollectionViewCell: UICollectionViewCell {
    override func awakeFromNib() {
        super.awakeFromNib()
        
        contentView.subviews.first?.layer.cornerRadius = 20
        contentView.subviews.first?.clipsToBounds = true
    }
}

3. 라운드 효과를 줄 셀 클래스에서 해당 클래스 상속

profile
iOS 개발자가 되기 위한 스터디룸...

0개의 댓글