This repository has been archived by the owner on Jun 17, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 448
Swift 4 Version? #368
Comments
great lib, each time you update the podfile you want to change the compiled version of swift,Hope to support swift4 Cheers! |
any plans for swift 4 support ? |
Actually I compiled using Swift 4.0, there is no serious mistakes, can run simple change |
Yes, works for me too! |
I also need for swift4 support! |
When my project convert to swift4,the PagingMenuController lib must run in swift 3.2,it can't run in swift4! |
There is pull request for Swift 4 available, any plans to merge that? |
Doesn't support safe area in swift4, is there any one who solved this? |
@termic Have you tried this for IOS 11? Maybe It can help
|
post_install do |installer|
installer.pods_project.targets.each do |target|
if ['PagingMenuController'].include? target.name
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = '3.2'
config.build_settings['ONLY_ACTIVE_ARCH'] = 'NO'
end
else
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = '4.0'
config.build_settings['ONLY_ACTIVE_ARCH'] = 'NO'
end
end
end
end |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hi,
great lib, thanks for your effort! Is there a Swift 4 version planned?
Cheers!
The text was updated successfully, but these errors were encountered: