LoginSignup
0

More than 5 years have passed since last update.

error: IB Designables: Failed to render and update auto layout status for GameController (azN-DG-Dld): dlopen(SwiftyButton.framework, 1): no suitable image found. Did find: -bash: syntax error near unexpected token `(

Posted at

error: IB Designables: Failed to render and update auto layout status for GameController (azN-DG-Dld): dlopen(SwiftyButton.framework, 1): no suitable image found. Did find: -bash: syntax error near unexpected token `(

Overview

IB Designables でエラーがでますた。

困りますた。

表示されなくて、泣いてしまいますた。

ので、

解決してみた。

参考資料

下記をPodfileへ追加して、

$ vi 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
$ pod install

下記フォルダーごと削除し
~/Library/Developer/Xcode/DerivedData

Xcodeをcleanするとうまくいきます。

以上

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0