-
Compositional Layout, Unable to simultaneously satisfy constraints.ios 2022. 11. 27. 18:26
Autolayout issue with Compositonal Layout
collectionview compositional layout with estimated height not working
Compositional Layout을 사용해 CollectionView를 구성하던 중,
[LayoutConstraints] Unable to simultaneously satisfy constraints. 에러가 발생해 작성
NSCollectionLayoutSize의 heightDimension에 .estimated(100) 이 원인인 이슈로 보인다.
해결 방법
1. set the same height dimension to both the item and the group.
- 나의 경우엔 item, group 모두 .estimated(100) 이었기에 해당하지 않음, 다른 constraints 이슈로 보임
2. Setting the priority of the bottom or trailing constraint (based on you want dynamic height or dynamic width) to 999
- 동적 height width 사이즈를 결정하는 bottom, trailing에 priority를 설정해 충돌 피함, 이 방법 통해 해결참고 링크
https://developer.apple.com/forums/thread/124346
'ios' 카테고리의 다른 글
iOS - 접근성, Voice over, custom UIAccessibilityElement (0) 2023.03.15 Swift / iOS앱 Tuist 적용기 (0) 2023.02.22 diffable datasource Error - Inconsistent associations for moves 에러 (0) 2022.11.26 NSMutableAttributedString extension (0) 2022.07.05 SnapKit, RxSwift 적용 예제 (0) 2022.04.28