We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
UICollectionViewDiffableDataSource
UICollectionViewDataSource
Compositional Layout
item
group
section
UICollectionViewCompositionalLayout
Group
너비
높이
UICollectionViewCompositionalLayoutSectionProvider
typealias UICollectionViewCompositionalLayoutSectionProvider = (Int, NSCollectionLayoutEnvironment) -> NSCollectionLayoutSection?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
UICollectionViewCompositionalLayout은 정말 개사기 개념!...
UICollectionView
UICollectionViewDiffableDataSource
객체를 이용 할 수 있는데,UICollectionViewDataSource
프로토콜을 채택하는UICollectionViewLayout
UICollectionViewFlowLayout
UICollectionViewCompositionalLayout
Compositional Layout
에 들어감.item
,group
,section
3가지에 관한 정보를UICollectionViewCompositionalLayout
에 주어야한다.Group
에서의너비
에 대한 비율임. 1이면 동일높이
에 대한 비율임. 1이면 동일item
에서의너비
에 대한 비율임. 1이면 동일높이
에 대한 비율임. 1이면 동일UICollectionViewCompositionalLayout
을 생성할 때,UICollectionViewCompositionalLayoutSectionProvider
라고 typealias를 반환하는데,The text was updated successfully, but these errors were encountered: