FSPagerView 오픈 소스 라이브러리를 사용하다가 다음과 같은 에러가 발생했습니다.
찾아보니 다음의 에러는 Cocopads의 버전 문제였습니다.
해당 에러를 해결해보겠습니다.
두 가지 방법이 있습니다.
첫 번째 방법으로 해결이 되면 넘어가고 첫 번째 방법이 안 된다면 두 번째 방법을 시도합니다.
[Solution 1] podfile에 다음의 코드를 추가하기
# Workaround for Cocoapods issue #7606
post_install do |installer|
installer.pods_project.build_configurations.each do |config|
config.build_settings.delete('CODE_SIGNING_ALLOWED')
config.build_settings.delete('CODE_SIGNING_REQUIRED')
end
end
예시)
[Solution 2] 기존 Cocoapads를 지우고 1.4.x 버전 cocoapads 설치
다음의 코드를 terminal에서 차례대로 입력합니다.
pod update는 podfile을 포함하고 있는 프로젝트로 경로를 이동해서 입력합니다.
sudo gem uninstall cocoapods
sudo gem install cocoapods -v 1.4.0
pod update
(하지만 필자의 경우, 다음의 에러가 발생해서 방법 2로 대체했습니다.)
해당 에러는 다음 포스터에서 진행하겠습니다.
※ 참고 출처
'Error' 카테고리의 다른 글
[iOS / Error] Expected to decode Array<Any> but found a dictionary instead 에러 해결 (0) | 2021.11.01 |
---|---|
[iOS / Error] Unable to load contents of file list... 에러 해결 (0) | 2021.08.19 |
[iOS / CocoaPods / Error] Oh no, an error occurred 에러 해결 (0) | 2021.08.09 |
[iOS / Error] whose view is not in the window hierarchy 경고 해결 (0) | 2021.08.05 |
[iOS / Error] Could not insert new outlet connection 에러 해결 (0) | 2021.08.01 |