TomThorpe / TTRangeSlider

A slider, similar in style to UISlider, but which allows you to pick a minimum and maximum range.
MIT License
969 stars 204 forks source link

Breaking Interface Builder #83

Open kerekson opened 6 years ago

kerekson commented 6 years ago

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

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