일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 리펙토링
- UITextView
- Clean Code
- collectionview
- clean architecture
- ribs
- Human interface guide
- RxCocoa
- Protocol
- 리팩토링
- Refactoring
- uitableview
- rxswift
- 애니메이션
- HIG
- tableView
- swift documentation
- swiftUI
- 리펙터링
- uiscrollview
- SWIFT
- ios
- MVVM
- map
- Observable
- Xcode
- combine
- 스위프트
- 클린 코드
- UICollectionView
- Today
- Total
목록header view (3)
김종권의 iOS 앱 개발 알아가기
headerView 색상headerView의 색상 backgroundColor를 아래처럼 clear라고 설정한 상태에서, 스크롤 하여 header가 sticky될때 색상이 자동으로 lightGray색상으로 변함import UIKitclass HeaderView: UITableViewHeaderFooterView { ... override init(reuseIdentifier: String?) { super.init(reuseIdentifier: reuseIdentifier) contentView.backgroundColor = .clear // tableView의 스타일 중 디폴트인, plain상태에서는 위처럼 보이고 grouped 상태에서는 아래처럼 backg..
방법: CALayer를 가지고 테이블 뷰 색깔로 그려주게 되면, separator가 가려지게끔 하는 원리 CALayer를 이용하여 UIView의 하단에 줄을 긋는 함수 정의 public extension UIView { func addBottomBorderWithColor(color: UIColor) { let border = CALayer() border.backgroundColor = color.cgColor border.frame = CGRect(x: 0, y: self.frame.size.height, width: self.frame.size.width, height: 1) self.layer.addSublayer(border) } func addAboveTheBottomBorderWithColo..
Custom Cell 셀에 들어갈 Model생성 (용도 - bind할 때 인수로 넘길 객체) // // TitleModel.swift // Testtes // // Created by 김종권 on 2020/11/01. // Copyright © 2020 jongkwon kim. All rights reserved. // import Foundation struct TitleModel { let title: String let subTitle: String } cocoa touch class -> "Also create XIB file"체크 후 넥스트 각 UI배치 및 hugging, compression 설정 (Description이 길어질 수 있으므로, Title의 hugging, compression모..