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
- collectionview
- 리펙토링
- Human interface guide
- rxswift
- uitableview
- HIG
- MVVM
- ribs
- UICollectionView
- Clean Code
- swift documentation
- Xcode
- map
- uiscrollview
- 리펙터링
- tableView
- Observable
- ios
- Refactoring
- 애니메이션
- swiftUI
- clean architecture
- UITextView
- SWIFT
- 리팩토링
- combine
- 클린 코드
- 스위프트
- RxCocoa
- Protocol
Archives
- Today
- Total
김종권의 iOS 앱 개발 알아가기
[iOS - SwiftUI] Sticky Header 구현 방법 (Sticky 헤더) 본문
Sticky 헤더 구현 아이디어
- LazyVStack의 pinnedViews 파라미터에 [.sectionHeaders]를 넣을 수 있는데 이 값을 사용하면 sticky header 구현이 매우 용이
LazyVStack(pinnedViews: [.sectionHeaders])
- 위 옵션을 주고 Section에 뷰를 넣으면 그 뷰가 sticky로 자동으로 동작됨
ScrollView {
LazyVStack(pinnedViews: [.sectionHeaders]) {
// 상단 콘텐츠
VStack {
Text("Top Content")
.font(.largeTitle)
.padding()
.background(Color.green)
.cornerRadius(10)
}
.padding()
// Sticky Header가 포함된 섹션
Section(header: MyStickyHeader()) {
}
}
}
구현하기
- NavigationView, ScrollView 준비
struct ContentView: View {
var body: some View {
NavigationView {
ScrollView {
// TODO
}
.navigationTitle("My List")
}
}
}
- ScrollView에 LazyVStack(pinnedViews:_)을 넣고 sticky header 위에 표출될 뷰
LazyVStack(pinnedViews: [.sectionHeaders]) {
// 상단 콘텐츠
VStack {
Text("Top Content")
.font(.largeTitle)
.padding()
.background(Color.green)
.cornerRadius(10)
}
.padding()
}
- Sticky Header 구현하고 이것을 Section(header:)에 주입
struct MyStickyHeader: View {
var body: some View {
HStack {
Text("Sticky Header")
.font(.largeTitle)
.bold()
.padding()
.frame(maxWidth: .infinity)
.background(Color.red)
.cornerRadius(10)
.shadow(radius: 10)
.foregroundColor(.white)
}
.frame(height: 80)
.padding(.horizontal)
.background(Color.red)
}
}
LazyVStack(pinnedViews: [.sectionHeaders]) {
// Sticky Header가 포함된 섹션
Section(header: MyStickyHeader()) {
// TODO 하단 콘텐츠
}
}
- 하단 컨텐츠까지 구현하면 완성
Section(header: MyStickyHeader()) {
// 하단 콘텐츠
ForEach(0..<50) { index in
Text("Item \(index)")
.padding()
.background(Color.blue.opacity(0.3))
.cornerRadius(10)
.padding(.horizontal)
}
}
* 전체 코드
import SwiftUI
struct ContentView: View {
var body: some View {
NavigationView {
ScrollView {
LazyVStack(pinnedViews: [.sectionHeaders]) {
// 상단 콘텐츠
VStack {
Text("Top Content")
.font(.largeTitle)
.padding()
.background(Color.green)
.cornerRadius(10)
}
.padding()
// Sticky Header가 포함된 섹션
Section(header: MyStickyHeader()) {
// 하단 콘텐츠
ForEach(0..<50) { index in
Text("Item \(index)")
.padding()
.background(Color.blue.opacity(0.3))
.cornerRadius(10)
.padding(.horizontal)
}
}
}
}
.navigationTitle("My List")
}
}
}
struct MyStickyHeader: View {
var body: some View {
HStack {
Text("Sticky Header")
.font(.largeTitle)
.bold()
.padding()
.frame(maxWidth: .infinity)
.background(Color.red)
.cornerRadius(10)
.shadow(radius: 10)
.foregroundColor(.white)
}
.frame(height: 80)
.padding(.horizontal)
.background(Color.red) // Background를 추가하여 scroll 영역과 일치 시킴
}
}
'iOS 응용 (SwiftUI)' 카테고리의 다른 글
Comments