pod 추가 이후 실행 시 아래와 같은 오류 발생
SDK does not contain 'libarclite' at the path '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/arc/libarclite_iphonesimulator.a'; try increasing the minimum deployment target

podfile 내 platform 관련 코드도 주석 해제 해제 후 11.0으로 변경해주고,

iOS Deployment Target 값도 13.0으로 변경해줬음


그리고 실행했더니 냅다 또 오류 4개 추가로 뜸
Sandbox: rsync.samba(59873) deny(1) ...(생략)

찾아보니 아래와 같이 Build Setting 내 "User Script Sandboxing"의 값을 Yes -> No 로 변경하면 실행 성공함

* 참고한 사이트 *
- https://stackoverflow.com/questions/77139617/clang-error-sdk-does-not-contain-libarclite-at-the-path
- https://www.inflearn.com/questions/1057232/error-xcode-sandbox-rsync-13885-deny-1
'iOS > UIKit' 카테고리의 다른 글
[Storyboard] 실행 시 검은 화면만 나오는 경우 (0) | 2025.02.06 |
---|---|
[iOS] Storyboard 없이 코드베이스로 프로젝트 설정하기 (0) | 2024.03.07 |
[iOS] Code-Base로 UIStackView 사용하기 (0) | 2023.10.18 |
[iOS] Storyboard로 커스텀 Cell을 가진 CollectionView 만들기 (0) | 2023.10.12 |
[Storyboard] 커스텀 Cell을 가진 TableView 만들기 (0) | 2023.10.11 |