Xcode(15)
-
[ERROR] Assertion failed: (aliasSectionNum == sectionNum && "alias and its target must be located in the same section"), function assignAliasAtomOffsetInSection, file Layout.cpp, line 3358.
1. 현상시뮬레이터에서는 정상적으로 빌드 및 실행이 됨.배포 또는 디바이스 빌드 및 실행 시 오류 발생2. 환경 정보MacBook Pro Inter CPUmacOS : Sonoma 14.4.1Xcode 15.3 3. 처리Build Settings ➔ Other Linker Flags ➔ -ld_classic 추가 : 오류 해결됨4. 기타위 방법으로 안될 경우Build Settings ➔ Other Linker Flags ➔ -ld_64 추가 : 확인은 못함
2024.05.18 -
App Store 앱 제출 Xcode 15 필수
2024년 4월 부터 앱스토어 제출시 Xcode 15 사용하라는 가이드 발표 https://developer.apple.com/kr/news/?id=khzvxn8a 이제 최신 OS 릴리즈용 빌드를 App Store에 제출할 수 있습니다 - 최신 뉴스 - Apple Developer iOS 17, iPadOS 17, macOS Sonoma, tvOS 17, watchOS 10이 곧 전 세계 사용자에게 제공됩니다. Xcode 15 릴리즈 후보와 최신 SDK를 사용하여 앱과 게임을 빌드하고, 이를 TestFlight에서 테스트한 후 심사를 위해 A developer.apple.com
2023.09.14 -
App Store 앱 제출 Xcode 14.1 필수
2023년 4월 1일 부터 앱스토어 제출시 Xcode 14.1 사용하라는 가이드 발표 https://developer.apple.com/kr/news/?id=z1erkhzr App Store에 iOS 16.1 및 iPadOS 16.1 앱 제출하기 - 최신 뉴스 - Apple Developer 세계에서 가장 앞선 모바일 운영 체제인 iOS 16.1 및 iPadOS 16.1이 전 세계 고객들에게 곧 제공될 예정입니다. 실시간 현황을 활용하여 사람들이 앱에서 일어나는일을 iPhone의 잠금 화면과 Dynamic Isl developer.apple.com https://developer.apple.com/kr/ipados/submit/ App Store에 iPadOS 앱 제출하기 - Apple Developer..
2023.09.14 -
[OSX-Command] xcode-select
개발자도구(Xcode) 디렉토리의 경로를 출력하거나 변경 # -p --print-path : 활성화된 개발자도구의 경로를 출력 > xcode-select -p /Applications/Xcode.app/Contents/Developer # -s --switch : 활성화시킬 개발자도구의 경로 설정 > xcode-select --switch /Applications/Xcode.app/Contents/Developer xcode-select: error: --switch must be run as root (e.g. `sudo xcode-select --switch `). > sudo xcode-select --switch /Applications/Xcode.app/Contents/Developer Pass..
2022.01.19 -
[Info] Xcode Release 정보
Xcode 버전별 OSX 호환 정보, 지원 iOS, OSX SDK 정보 등을 한눈에 확인할 수 있다. https://xcodereleases.com/ Xcode Releases More than you ever wanted to know™ xcodereleases.com
2021.10.24 -
[ERROR] validateNewTexture:89: failed assertion `BytesPerRow of a buffer-backed texture with pixelFormat(MTLPixelFormatBGRA8Unorm) must be aligned to 64 bytes, found bytesPerRow(1200)'
해결방법 Edit Scheme > Run > Diagnostics > Metal > API Validation 체크 해제 화면이 다를경우 참고 화면이 다를경우 참고. stackoverflow 에서 찾음 Metal API Validation > Disabled 설정
2021.10.01