You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As a workaround, I add the code bellow at the end of my Podfile to force the ParallaxHeader swift version
post_install do |installer|
swift4_0_targets = ["ParallaxHeader"]
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
if swift4_0_targets.include? target.name
config.build_settings['SWIFT_VERSION'] = '4.0'
end
end
end
end
Swift 4.2 compiler error:
'NSLayoutFormatOptions' has been renamed to 'NSLayoutConstraint.FormatOptions'
The text was updated successfully, but these errors were encountered: