Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- map
- 스위프트
- Refactoring
- UICollectionView
- Protocol
- collectionview
- SWIFT
- swiftUI
- 클린 코드
- swift documentation
- Xcode
- 리펙터링
- Observable
- clean architecture
- Clean Code
- uiscrollview
- rxswift
- 리펙토링
- ribs
- HIG
- combine
- MVVM
- tableView
- Human interface guide
- uitableview
- UITextView
- 리팩토링
- ios
- RxCocoa
- 애니메이션
Archives
- Today
- Total
김종권의 iOS 앱 개발 알아가기
[iOS - swift] UIStackView에 padding 넣는 방법 (UIStackView Margin, isLayoutMarginsRelativeArrangement, directionalLayoutMargins) 본문
iOS 응용 (swift)
[iOS - swift] UIStackView에 padding 넣는 방법 (UIStackView Margin, isLayoutMarginsRelativeArrangement, directionalLayoutMargins)
jake-kim 2023. 9. 12. 01:10UIStackView의 padding
- 보통 UIStackView를 사용하면 UIStackView안의 아이템들 spacing은 setCustomSpacing(_:after:) 메소드를 사용하여 구현이 가능
stackView.setCustomSpacing(16, after: label1)
- 만약 UIStackView에 추가한 아이템들과 UIStackView간의 padding을 아래처럼 주고 싶은 경우?
UIStackView에 padding 적용방법
- UIStackView의 isLayoutMarginsRelativeArrangement를 true로 설정
- 이 프로퍼티는 margin을 사용하겠다는 플래그값을 의미 (default가 false이며 false이면 margin적용 x)
- 해당 옵션은 UIStackView에만 있는 옵션
stackView.isLayoutMarginsRelativeArrangement = true
- directionalLayoutMargins 값을 이용하여 padding설정이 가능
- UIEdgeInsets이 아닌 NSDirectionalEdgeInsets값임을 주의
- UIEdgeInsets은 아럽어와 같은 RTL(Right-to-Left) 언어 대응이 안되지만 NSDirectionalEdgeInsets은 leading, trailing을 사용하여 RTL에도 대응이 되는 장점이 존재
stackView.directionalLayoutMargins = NSDirectionalEdgeInsets(top: 20, leading: 20, bottom: 20, trailing: 20)
- directionalLayoutMargins은 UIView의 메소드이며 iOS 11에서 나온 프로퍼티
extension UIView {
...
@available(iOS 11.0, *)
open var directionalLayoutMargins: NSDirectionalEdgeInsets
}
참고) iOS 9에 나온 layoutMargins 프로퍼티를 사용해도 되지만 이 프로퍼티는 UIEdgeInsets 타입이며 leading, trailing이 아닌 left, right만 대응 되므로 가급적이면 directionalLayoutMargins 사용을 지향할 것
* 전체 코드: https://github.com/JK0369/ExStackViewMargin
* 참고
https://developer.apple.com/documentation/uikit/uistackview/1616220-islayoutmarginsrelativearrangeme
'iOS 응용 (swift)' 카테고리의 다른 글
Comments