티스토리 뷰
https://developer.apple.com/library/archive/documentation/WindowsViews/Conceptual/CollectionViewPGforIOS/UsingtheFlowLayout/UsingtheFlowLayout.html
=> 위의 문서를 보면 estimatedspacing이랑 실제 그려질때 actual spacing이랑 다른 것을 볼 수 있다
스택오버플로우로 찾아본 결과,,! 밑의 코드로 actual spacing을 확인해볼 수 있다
func calculateActualSpacing()->CGFloat?{
let firstIndex = IndexPath(item: 0, section: 0)
let secondIndex = IndexPath(item: 1, section: 0)
if let att1 = collectionView.layoutAttributesForItem(at: firstIndex),
let att2 = collectionView.layoutAttributesForItem(at: secondIndex) {
let actualSpace = att2.frame.minX - att1.frame.maxX
return actualSpace
}
return nil
}
>> 커스텀 레이아웃도 만들어봐야징~
'🍏 > iOS' 카테고리의 다른 글
[CodingKey] CodingKey로 JSON DECODING을 예쁘게 (0) | 2018.12.31 |
---|---|
[StatusBar] StatusBar 색깔을 White로 바꾸자 (0) | 2018.12.29 |
JS에서 SWIFT를 불러보자 ( 웹뷰에서 네이티브로 화면이동가능한 하이브리드 앱 구현 위해 ) (2) | 2018.09.20 |
vision framework (0) | 2018.06.22 |
[FireBase - iOS] Firebase Auth를 사용하여 간단한 회원가입을 구현하자 (0) | 2017.09.18 |
- Total
- Today
- Yesterday
- Django Firebase Cloud Messaging
- flutter dynamic link
- Flutter Spacer
- flutter 앱 출시
- Flutter Text Gradient
- ipad multitasking
- 장고 Custom Management Command
- flutter deep link
- DRF APIException
- ribs
- 장고 URL querystring
- Dart Factory
- PencilKit
- cocoapod
- github actions
- Flutter 로딩
- Flutter Clipboard
- flutter build mode
- Django Heroku Scheduler
- drf custom error
- Django FCM
- Watch App for iOS App vs Watch App
- SerializerMethodField
- Flutter getter setter
- 플러터 싱글톤
- Sketch 누끼
- 구글 Geocoding API
- METAL
- Python Type Hint
- 플러터 얼럿
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |