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 | 31 |
Tags
- Human interface guide
- combine
- 애니메이션
- Refactoring
- ios
- map
- 리팩토링
- UITextView
- uiscrollview
- UICollectionView
- 클린 코드
- Protocol
- Observable
- 스위프트
- tableView
- rxswift
- Xcode
- SWIFT
- ribs
- HIG
- RxCocoa
- uitableview
- 리펙토링
- collectionview
- Clean Code
- swiftUI
- MVVM
- scrollview
- clean architecture
- swift documentation
Archives
- Today
- Total
목록offset (2)
김종권의 iOS 앱 개발 알아가기
* 애플 튜토리얼의 프로젝트 파일을 받아서 실습하고 그 중에서 중요한 부분만 포스팅 4강에서 만든 Row import SwiftUI struct LandmarkRow: View { var landmark: Landmark var body: some View { HStack { landmark.image .resizable() .frame(width: 50, height: 50, alignment: .leading) Text(landmark.name) Spacer() //
iOS 튜토리얼 (SwiftUI)
2022. 7. 7. 23:33
SnapKit을 사용할때 해석 방향이 가장 중요 순차적으로 해석: 만들다 > 상단을 > viewProgreess의 하단과 동일 > offset은 32 make.top.equalTo(viewProgress.snp.bottom).offset(32) Anchor 모든 앵커와 제약 조건 자체를 함께 연결하는것이 가능 child.snp.makeConstraints { make in make.lead.top.trailing.bottom.equalToSuperview() } edge를 이용하여 더욱 간편하게 사용 child.snp.makeConstraints { make in make.edges.equalToSuperview() } view에 inset값을 주고 싶은경우 inset()사용 child.snp.makeC..
iOS 응용 (swift)
2021. 7. 11. 12:30