CocoaPods1.5.0에서 도입한 라이브러리에서 @IBDesignable을 지정한 View의 StroyBoard에 그리면 오류가 발생합니다. "IB Designables: Failed to render and update auto layout status for ViewController"
@IBDesignableを
(을)를 지정한 View 클래스를 StoryBoard상에 배치하면(자), 렌더링에 다음과 같은 에러가 발생합니다. (프로젝트 빌드는 통과합니다)error:
IB Designables:
Failed to render and update auto layout status for ViewController (BYZ-38-t0r):
dlopen(XXXX.framework, 1):
no suitable image found.
Did find: XXXX.framework: required code signature missing for 'XXXX.framework'
1.5.0 그대로 사용하기 위해서는 Podfile에 다음을 추가하여 해결했습니다.
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
참고
Reference
이 문제에 관하여(CocoaPods1.5.0에서 도입한 라이브러리에서 @IBDesignable을 지정한 View의 StroyBoard에 그리면 오류가 발생합니다. "IB Designables: Failed to render and update auto layout status for ViewController"), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/darquro/items/cd2166e308641844c825텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)