일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- environmentobjet
- ar
- WWDC
- authentication
- 데이터최적화
- 네트워크
- auth
- state
- Network
- combine
- Concurrency
- 달력
- CS
- firebase
- arkit
- iphone
- SwiftUI
- GCD
- realitykit
- ios
- withAnimation
- fullscreencover
- UIKit
- Animation
- gesture
- dataflow
- RxSwift
- Performance
- swift
- stateobject
Archives
- Today
- Total
XLOG
[SwiftUI] ImageResize 후 onTapGesture 적용시 터치영역 버그 본문
ForEach 를 사용하여 카드컴포넌트를 구성한 후, 각 컴퍼넌트에 onTapGesture를 적용했더니, 터치 영역에 문제가 생겼다.
인덱스 0 번의 컴퍼넌트 중간 아래부분 부터는 인덱스 1번 영역으로 터치가 인식되는 것이었다.
resizable을 적용한 후, onTapGesture를 적용하였지만, resizable이 먹히지 않은 것 같다는 생각에 검색을 해봤다.
기존 코드 예시
var body: som View {
ForEach(Array(myArray.enumerated()), id: \.offset) { index, item in
cardView(item: item, index: index))
}
}
@ViewBuilder
func cardView(item: itemType, index: Int) -> some View {
ZStack {
Image("myImage")
.resizable()
.aspectRatio(contentMode: .fill)
.frame(height: 120, alignment: .center)
.cornerRadius(10)
.clipped()
Text("title")
}
.onTapGesture(perform: {
print("index: \(index)")
}
}
...
인터넷을 검색해 보니 contentShape을 적용해 주면 잘 작동한다고 한다.
바뀌 코드 예시
var body: som View {
ForEach(Array(myArray.enumerated()), id: \.offset) { index, item in
cardView(item: item, index: index))
}
}
@ViewBuilder
func cardView(item: itemType, index: Int) -> some View {
ZStack {
Image("myImage")
.resizable()
.aspectRatio(contentMode: .fill)
.frame(height: 120, alignment: .center)
.cornerRadius(10)
.clipped()
Text("title")
}
.frame(hegith: 120)
.contentShape(RoundedRectangle(cornerRadius: 10))
.onTapGesture(perform: {
print("index: \(index)")
}
}
...
아마 resizable()과 aspectRatio, clipped() 는 shape의 hit testing을 수정해주지는 못하는 문제가 있는것 같다. 단순히 view를 잘라줄 뿐……
'Swift > SwiftUI' 카테고리의 다른 글
[SwiftUI] QR Code Scanner 만들기 (SwifUI 에 ViewController 사용하기) (1) | 2023.03.08 |
---|---|
[SwiftUI] 날짜 계산, 월간달력 만들기 (0) | 2023.03.04 |
[SwiftUI] 캘린더용 InfinityScroll 로직에 대한 아이디어 (0) | 2023.02.27 |
[SwiftUI] onAppear 에서 async 함수 실행하기 (0) | 2023.02.18 |
[SwiftUI] Scroll Value 구하기 (0) | 2023.01.30 |