FTPopOverMenu is a pop over menu for iOS which is maybe the easiest one to use. Supports both portrait and landscape. It can show from any UIView, any UIBarButtonItem and any CGRect.
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] ='9.0'
end
end
end
我公司项目的组件依赖FTPopOverMenu,但是作者的FTPopOverMenu.podspec没有声明s.ios.deployment_target = '9.0',这样在pod install安装后FTPopOverMenu项目的iOS Deploment Target为iOS 4.3,编译会出错,希望作者早日加上这个设置。