Fscalendar: IBDesignables Error

Created on 13 Apr 2018  ·  14Comments  ·  Source: WenchaoD/FSCalendar

error: IB Designables: Failed to render and update auto layout status for NewEventStep1View (VMT-Q0-O5m): dlopen(FSCalendar.framework, 1): no suitable image found. Did find: FSCalendar.framework: required code signature missing for 'FSCalendar.framework'

Most helpful comment

I resolved this problem by add below to Podfile, and pod install again

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

All 14 comments

I am getting the same error.

Failed to render and update auto layout status for LoginViewController (7ej-oF-PKC): dlopen(FSCalendar.framework, 1): no suitable image found. Did find:
FSCalendar.framework: required code signature missing for 'FSCalendar.framework'

@saitejapanditi67 , @Rjmaurya13
use_frameworks!
try add this line or comment this line , pod install, command + shift + K, run again.

I solved this error by using cocoapod 1.4.0
Cocoapod ver 1.5.0 may have bugs.
https://github.com/CocoaPods/CocoaPods/issues/7606

This error annoyed me...

same error.... i don't want use cocoapod 1.4.0. Any other help?

是的 cocopods1.5.0 用IB_Design会有问题 , 解决办法是use_frameworks! 或者不要用pod管理 直接导入文件使用

I use manually...

I resolved this problem by add below to Podfile, and pod install again

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

nothing changes error came again

On Wed, May 9, 2018 at 1:33 PM, anhhtbk notifications@github.com wrote:

I resolved this problem by add below to Podfile, and pod install again

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


You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
https://github.com/WenchaoD/FSCalendar/issues/914#issuecomment-387656411,
or mute the thread
https://github.com/notifications/unsubscribe-auth/AkkJhw-K4ssVsqNF0AV0tPYtgn8SV6bwks5twqLNgaJpZM4TS1sP
.

Found this bug though try to install manually.

@anhhtbk's advice works!

XCode>Prefrences>Locations>click on arrow at Derived Data location & delete it.
Then close XCode.
run rm -rf ~/Library/Developer/Xcode/DerivedData at terminal.
Then open XCode

I'm getting the same error also.

Thank you @anhhtbk , that solved my problem.

@anhhtbk
Solution worked! Thanks xo 👍 😃

Was this page helpful?
0 / 5 - 0 ratings

Related issues

rintoandrews90 picture rintoandrews90  ·  4Comments

StanleySathler picture StanleySathler  ·  5Comments

ghost picture ghost  ·  5Comments

garudaonekh picture garudaonekh  ·  4Comments

divya417 picture divya417  ·  6Comments