WenchaoD / FSCalendar

A fully customizable iOS calendar library, compatible with Objective-C and Swift
MIT License
10.59k stars 1.93k forks source link

IBDesignables Error #914

Open saitejapanditi67 opened 6 years ago

saitejapanditi67 commented 6 years ago

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'

Rjmaurya13 commented 6 years ago

I am getting the same error.

liufengting commented 6 years ago

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 commented 6 years ago

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

IamBeginnerDeveloper commented 6 years ago

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

xhidnoda commented 6 years ago

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

WangGuibin commented 6 years ago

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

xhidnoda commented 6 years ago

I use manually...

anhhtbk commented 6 years ago

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
saitejapanditi67 commented 6 years ago

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 .

imehn commented 6 years ago

Found this bug though try to install manually.

@anhhtbk's advice works!

erentezeller commented 6 years ago

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

kakubei commented 5 years ago

I'm getting the same error also.

soufianerafik commented 5 years ago

Thank you @anhhtbk , that solved my problem.

Rakshitha-M-Rodrigo commented 5 years ago

@anhhtbk Solution worked! Thanks xo 👍 😃

WallabyStuff commented 3 years ago

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