-View
- FeedCell.swift
import UIKit
class FeedCell: UICollectionViewCell{
//MARK: - Propertie
//MARK: - Lifecycle
override init(frame: CGRect){
super.init(frame: frame)
backgroundColor = .brown
}
required init?(coder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
//MARK: - API
//MARK: - Actions
//MARK: - Helpers
}
-Controller
- FeedController
class FeedController: UICollectionViewController{
collectionView.register(FeedCell.self, forCellWithReuseIdentifier: reuserIdentifier)
FeedController의 UICollectionViewController에서 register를 통해 FeedCell.swift으로 설정을 해준다.
FeedCell.swift에서 설정한 backgroundColor = .brown이 FeedController에서 적용된 모습
'개발 > 아이오에스' 카테고리의 다른 글
swift] protocol 사용 Delegate 만들어서 사용해보기! (0) | 2021.03.22 |
---|---|
ios] CAGradientLayer - 그라데이션 효과 (0) | 2021.03.11 |
ios] 코드로 UITabBarController의 탭에 UICollectionViewController를 선언하고 콜렉션뷰 설정하기(테이블뷰처럼) (0) | 2021.03.08 |
ios] 코드로 UITabBarController 만들고 탭 별 뷰컨트롤러 네비게이션 컨트롤러로 만들고 tabBarItem 수정하기 (0) | 2021.03.08 |
swift] attributedText으로 텍스트마다 다양한 스타일(폰트,사이즈,색상), NSMutableParagraphStyle으로 텍스트사이 간격주기 (0) | 2021.03.04 |