-
Notifications
You must be signed in to change notification settings - Fork 74
/
Copy pathFTPopOverMenu_Swift.podspec
20 lines (18 loc) · 1.14 KB
/
FTPopOverMenu_Swift.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |s|
s.name = "FTPopOverMenu_Swift"
s.version = "0.4.5"
s.summary = "Swift version of FTPopOverMenu. A pop over menu for iOS which is maybe the easiest one to use, highly customizable."
s.description = <<-DESC
`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`. Simplest APIs, enable you to change the style in one line of code.
DESC
s.author = { "liufengting" => "wo157121900@me.com" }
s.homepage = "https://github.com/liufengting/FTPopOverMenu_Swift"
s.screenshots = "https://raw.githubusercontent.com/liufengting/FTResourceRepo/master/Resource/FTPopOverMenu/screenshots.gif"
s.license = { :type => "MIT", :file => "LICENSE" }
s.platform = :ios, "10.0"
s.source = { :git => "https://github.com/liufengting/FTPopOverMenu_Swift.git", :tag => "#{s.version}" }
s.source_files = ["FTPopOverMenu/*.swift"]
s.pod_target_xcconfig = { 'SWIFT_VERSION' => '5.0' }
s.requires_arc = true
s.swift_version = '5.0'
end