CocoaPods1.5.0で導入したライブラリで@IBDesignableを指定したViewのStroyBoard上の描画でエラーになる。"IB Designables: Failed to render and update auto layout status for ViewController"
CocoaPods経由で導入したライブラリで、 @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
参考
Author And Source
この問題について(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に含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .