xcode25 iOS App 제출 시 iPad 스크린샷 제외 iOS 앱을 제출하는데, iPad 필수 스크린샷을 등록해야 한다는 문구가 나올 경우 Xcode 바이너리 빌드 시에 iPad가 포함되어 있어서 그렇습니다. TARGETS > General > Supported Destinations에서 iPad를 제거하고, 위의 상태에서 Archive하여 ASC에 올리면 됩니다. 그러면 더 이상 iPad 스크린샷을 요구하지 않을 것입니다 :) 참고자료 https://www.clien.net/service/board/cm_app/16239091 2023. 5. 14. Missing package product <package name> 에러 해결 방법 Package.swift에 dependency를 추가하다가 Missing Package produdct 'packagename' 이라는 에러 발생 => File > Packages > Reset Package Caches 해준 다음 다시 build 하여서 해결 https://lxxyeon.tistory.com/150 [Xcode, Error]Missing package product [에러내용] Missing package product 'SnapKit' Missing package product [해결법1] File > Swift Packages > Reset Package Caches [해결법1] File > Swift Packages > Update to Latest Package Versions .. 2023. 1. 14. Multiple-commands-produce-Error 해결방법 Xcode는 업데이트하면 항상 좀 앓는 것 같다,, Multiple-commands-produce-Error 해결방법 아래 블로그에서 참고! https://zetal.tistory.com/entry/Multiple-commands-produce-Error-%ED%95%B4%EA%B2%B0%EB%B2%95 Multiple commands produce Error 해결법 외부 라이브러리를 포함한 프로젝트를 다운로드 받았을때 종종 Multiple commands produced 에러를 보실 수 있습니다. 같은 파일명이 생겨서 나는 에러라고 합니다 해결법은 아래와 같습니다. 오류 문 zetal.tistory.com 2022. 12. 18. I cant find push notifications in xcode https://developer.apple.com/forums/thread/127698 I cant find push notifications in … | Apple Developer Forums I have trouble finding the capability push notifications in xcode 11. am I missing something is this in the developer program ? developer.apple.com Automatically manage signing 언체크하기! 2022. 12. 18. XCode 단축키 모음 1. 좌측 패널(navigator) show & hide : command + 0 Navigator에 보면 폴더 아이콘, 돋보기 아이콘, 스프레이 같이 생긴 아이콘 등 여러 메뉴가 있고 각 메뉴마다 단축키로 접근이 가능합니다. 제일 좌측 메뉴는 command + 1, 그 다음은 command + 2 이렇게 순서대로 command + 번호로 접근이 가능합니다. 2. Console(debug area) show & hide : command + Shift + y 2022. 10. 21. Array 생성하는 방법과 기본 기능들 Array 생성하기 Array를 생성하는 방법에는 아래와 같이 크게 세 가지 방법이 있습니다. 생성 방법#1 1 var numbers: Array = Array() cs 생성 방법#2 1 var names = [String]() cs 생성 방법#3 1 var height: [Int] = [] cs 처음에 저는 두번째 방법만 배워서 Stackoverflow에서 첫번째 형태를 보았을 때 당황스러웠는데, 알고보니 arrary를 선언하는 방법 중에 하나였답니다. 선언한 Array에 들어갈 수 있는 요소들은 처음에 설정한 기본 데이터 타입과 일치하는 요소들만이 들어갈 수 있습니다. 즉, String 으로 설정한 경우에는 문자열만이 들어갈 수 있고, Int로 설정한 경우에는 실수만 들어갈 수 있습니다. Array .. 2022. 10. 18. 이전 1 2 3 4 5 다음 반응형