MengTo / Spring

A library to simplify iOS animations in Swift.
http://designcode.io
MIT License
14.08k stars 1.8k forks source link

required code signature missing for Spring.framework #301

Closed ml1375 closed 6 years ago

ml1375 commented 6 years ago

Main.storyboard: error: IB Designables: Failed to render and update auto layout status for ViewController (BYZ-38-t0r): dlopen(Spring.framework, 1): no suitable image found. Did find: Spring.framework: required code signature missing for 'Spring.framework' help me please

rfarbod commented 6 years ago

having the same problem ever since I updated to Xcode 9.3 please fix this.

cocoabagel commented 6 years ago

If using CocoaPod 1.5.0, try this solution. https://stackoverflow.com/a/49872953

This worked for me.

ml1375 commented 6 years ago

Thanks a lot @cocoabagel I'm written this code on my pod

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

this worked for me