https://github.com/devxoul/Then
let homeLabel: UILabel = {
let homeLabel = UILabel()
homeLabel.text = "Home"
homeLabel.textAlignment = .center
homeLabel.font = .systemFont(ofSize: 30)
homeLabel.textColor = .black
return homeLabel
}()
Then라이브러를 사용하기 전에는 즉시실행 함수
클로저 안에 컴포넌트에 대한 속성을 설정하는 방식으로 초기화 하였습니다.
let homeLabel: UILabel().then {
$0.text = "Home"
$0.textColor = .black
$0.textAlignment = .center
$0.font = .systemFont(ofSize: 30)
}
homLabel
클로저 안에 객체를 생성하는 부분
과 return
부분이 사라졌다.
Builder Pattern을 이용해 컴포넌트에 초기화를 체이닝 방식으로 할 수 있음.
let homeLabel: UILabel = UILabel().ductTape
.text("Home")
.textColor(.red)
.textALignment(.center)
.font(.systemFont(ofSize: 30))
//
let layout: UICollectionViewFlowLayout = UICollectionViewFlowLayout()
.ductTape
.minimumLineSpacing(10)
.minimumInteritemSpacing(10)
.itemSize(CGSize(width: 100, height: 100))
.scrollDirection(.vertical)
lazy var collectionView: UICollectionView = UICollectionView(frame: .zero,
collectionViewLayout: layout)
.ductTape
.dataSource(self)
.delegate(self)
.translatesAutoresizingMaskIntoConstraints(false)
.reinforce {
$0.register(UICollectionViewCell.self, forCellWithReuseIdentifier: "Cell")
}