ios(SwiftUI) 4

XCode 15.0 업데이트 이후 발생한 이슈 해결 정리 (내가 볼거)

https://stackoverflow.com/questions/73847451/how-to-allow-loading-png-from-http-via-adding-nsexceptiondomains-in-ats How to allow loading png from http via adding NSExceptionDomains in ATS? in exercise https://github.com/Mairoslav/5networkAndGDC/tree/main/ImageRequest I would like to allow the jpg to be loaded from the web site with "http" scheme by adjusting stackoverflow.com https://kka3seb.ti..

ios(SwiftUI) 2023.10.12

SwitfUI) 버튼이 Text 레이블 외의 영역에서도 클릭되게 하기

Button(action: {print("Customer clicked")}) { NavigationLink(destination: CustomerMainView()) { Text("주문하기\n\nᐅ") .bold() .foregroundColor(Color.white) .background(Color(hex: "#80B3FF")) .frame(maxWidth: .infinity, maxHeight: .infinity, alignment: .center) } }.background(Color.blue) 스위프트 UI에서 버튼을 만들고 클릭을 해보면 텍스트 부분밖에 액션이 잡히지 않는 현상을 볼 수 있다 분명 frame 으로 영역을 크게 잡아줘도 전혀 액션이 잡히지 않는데 이때 버튼이 아닌 내부 레이블의 ..

ios(SwiftUI) 2022.09.06