Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Breaking Interface Builder #83

Open
kerekson opened this issue Jul 23, 2018 · 1 comment
Open

Breaking Interface Builder #83

kerekson opened this issue Jul 23, 2018 · 1 comment

Comments

@kerekson
Copy link

***.xib: error: IB Designables: Failed to render and update auto layout status for UIView (i5M-Pr-FkT): dlopen(TTRangeSlider.framework, 1): no suitable image found. Did find:
TTRangeSlider.framework: required code signature missing for 'TTRangeSlider.framework'

@pitoneux
Copy link

a quick fix for xcode 9.4.1 (apparently it is fix with xcode 10). add this at the bottom of the pod file:

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

from:

stackoverflow

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants