FSCalendar icon indicating copy to clipboard operation
FSCalendar copied to clipboard

IBDesignables Error

Open saitejapanditi67 opened this issue 6 years ago • 15 comments

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'

saitejapanditi67 avatar Apr 13 '18 04:04 saitejapanditi67

I am getting the same error.

Rjmaurya13 avatar Apr 16 '18 18:04 Rjmaurya13

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'

liufengting avatar Apr 23 '18 03:04 liufengting

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

liufengting avatar Apr 23 '18 03:04 liufengting

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...

IamBeginnerDeveloper avatar Apr 24 '18 10:04 IamBeginnerDeveloper

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

xhidnoda avatar Apr 26 '18 18:04 xhidnoda

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

WangGuibin avatar May 02 '18 13:05 WangGuibin

I use manually...

xhidnoda avatar May 02 '18 13:05 xhidnoda

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

anhhtbk avatar May 09 '18 08:05 anhhtbk

nothing changes error came again

On Wed, May 9, 2018 at 1:33 PM, anhhtbk [email protected] 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 .

saitejapanditi67 avatar May 12 '18 05:05 saitejapanditi67

Found this bug though try to install manually.

@anhhtbk's advice works!

imehn avatar May 12 '18 18:05 imehn

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

erentezeller avatar Jun 13 '18 06:06 erentezeller

I'm getting the same error also.

kakubei avatar Jul 31 '18 12:07 kakubei

Thank you @anhhtbk , that solved my problem.

soufianerafik avatar Aug 04 '18 06:08 soufianerafik

@anhhtbk Solution worked! Thanks xo 👍 😃

Rakshitha-M-Rodrigo avatar Aug 13 '18 19:08 Rakshitha-M-Rodrigo

@anhhtbk your solution doesn't work with realmSwift. sad🥲

WallabyStuff avatar Jul 20 '21 17:07 WallabyStuff