PagingMenuController
PagingMenuController copied to clipboard
Swift 4 Version?
Hi,
great lib, thanks for your effort! Is there a Swift 4 version planned?
Cheers!
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? https://github.com/kitasuke/PagingMenuController/pull/366
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
collectionView.contentInsetAdjustmentBehavior = .never
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