2025-02-20 1. 방법 Xcode => Runner => Build Settings and put "Allow Non-modular Includes In Framework Modules" to "yes" Xcode 상의 위의 위치로 이동해 아래 설정값을 Yes 로 바꿔주면 해결 된다. 메인 이미지 출처 : 사진: Unsplash의Josh Hild
2024-11-211. 방법 Window > Organizer > Products > Archives 참고 링크 https://stackoverflow.com/questions/7377162/xcode-but-where-are-our-archives Xcode - But... Where are our archives?I've submitted three versions of my app onto the App Store using the Build and Archive commands. But... Where are those archives? I've just learnt that I just need them to be able to read crashl...stackoverflow.com 메인 이미..
2024-06-13iOS 웹뷰에서 onclick 이벤트를 처리할 때 클릭된 영역에 회색 플리커 현상이 나타나는 문제를 경험하신 적이 있나요? 이는 웹 콘텐츠가 기본적으로 적용하는 클릭 피드백 효과로 인해 발생합니다. 이 블로그 포스트에서는 이러한 클릭 피드백 효과를 제거하는 방법을 소개해 드리겠습니다.1. -webkit-tap-highlight-color가장 간단한 방법은 CSS의 -webkit-tap-highlight-color 속성을 사용하는 것입니다. 이 속성을 통해 클릭 피드백 효과를 완전히 제거할 수 있습니다. * { -webkit-tap-highlight-color: transparent;} 이 코드를 스타일 시트에 추가하면 페이지의 모든 요소에서 탭 하이라이트 효과가 제거됩니다.2. ..