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
- ios
- swiftUI
- Human interface guide
- map
- swift documentation
- clean architecture
- RxCocoa
- MVVM
- Protocol
- Clean Code
- Observable
- 스위프트
- Refactoring
- collectionview
- 리펙터링
- Xcode
- uiscrollview
- 리펙토링
- SWIFT
- 리팩토링
- uitableview
- 클린 코드
- tableView
- rxswift
- combine
- HIG
- UITextView
- 애니메이션
- ribs
- UICollectionView
Archives
- Today
- Total
김종권의 iOS 앱 개발 알아가기
[iOS - swift] Custom View (only code) 본문
* custom view (xib) 참고: ios-development.tistory.com/391
custom view 생성 접근
- stored property를 사용하며 클로저를 통해 개별 컴포넌트의 속성과 translatesAutoresizingMaskIntoConstraints = false로 설정
- init(frame:)과 init(coder:)에서 각각 setupLayout()을 호출하여, 개별 컴포넌트들의 레이아웃 결정
- xib를 이용하면 이부분에서 nib를 이용하여 view를 새로 생성하는 과정이 있지만 코드로만 할 경우 필요 x
custom view 생성
class SampleView: UIView {
// component 속성 정의
// init
// setupLayout
}
- 개별 컴포넌트를 stored property와 클로저를 통해 정의
- 개별 컴포넌트의 속성 정의
- translateAutoresizingMaskIntoConstraints = false로 지정
class SampleView: UIView {
let imageView: UIImageView = {
let view = UIImageView()
view.translateAutoresizingMaskIntroConstraints = false
view.image = UIImage(systemName: "pencil")
return view
}()
let descriptionLabel: UILabel = {
let label = UILabel()
label.translateAutoresizingMaskIntoConstraints = false
label.text = "description"
return label
}()
}
- 초기화 구문 작성
- init(frame:)
- init(coder:)
class SampleView: UIView {
// componet ...
override init(frame: CGRect) {
super.init(frame: frame)
setupLayout()
}
required init?(coder: NSCoder) {
super.init(coder: coder)
setupLayout()
}
}
- 개별 컴포넌트 들의 setupLayout
class SampleView: UIView {
// component
// init
func setupView() {
backgroundColor = .orange
addSubview(imageView)
addSubview(descriptionLabel)
NSLayoutConstraint.activate([
imageView.widthAnchor.constraint(equalToConstaint: 24),
imageView.heightAnchor.constraint(equalTo: imageView.widthAnchor),
imageView.leadingAnchor.constraint(equalTo: leadingAnchor, constraint: 12),
imageView.centerYAnchor.constraint(equalTo: centerYAnchor),
descriptionLabel.leadingAnchor.constraint(equalTo: imageView.trailingAnchor, constraint: 12),
descriptionLabel.trailingAnchor.constraint(equalTo: trailingAnchor, constraint: -12),
descriptionLabel.topAnchor.constraint(equalTo: topAnchor, constant: 16),
descriptionLabel.bottomAnchor.constraint(equalTo: bottomAnchor, constant: -16)
])
}
}
custom view 사용
- 사용하려는 ViewController에 stored-property와 클로저를 이용하여 초기화
class ViewController: UIViewController {
let sampleView: SampleView = {
let view = SampleView()
view.translateAutoresizingMaskIntoConstraints = false
return view
}()
override func viewDidLoad() {
super.viewDidLoad()
setupView()
}
private func setupView() {
view.addSubview(sampleView)
NSLayoutConstraint.activate([
sampleView.topAnchor.constraint(equalTo: view.safeAreaLayoutGuide.topAnchor, constant: 8),
sampleView.leadingAnchor.constraint(equalTo: view.safeAreaLayoutGuide.leadingAnchor, constant: 16),
sampleView.trailingAnchor.constraint(equalTo: view.safeAreaLayoutGuide.trailingAnchor, constant: -16)
])
}
}
'iOS 응용 (swift)' 카테고리의 다른 글
[iOS - swift] 알람 설정(push setting) 코드에서 확인 방법 (0) | 2021.04.05 |
---|---|
[iOS - swift] 동적으로 tableView의 frame사이즈 변경 방법, intrinsicContentSize (0) | 2021.04.02 |
[iOS - swift] PageControl, UIScrollView, 안내화면 (2) | 2021.03.30 |
[iOS - swift] UIGraphicsBeginImageContextWithOptions, 그래픽 UIImage 생성 (0) | 2021.03.29 |
[iOS - swift] CAGradientLayer, layer.mask (+ 텍스트 gradient fade out 처리) (0) | 2021.03.26 |
Comments