-
Notifications
You must be signed in to change notification settings - Fork 0
/
MAFOverlay.podspec
32 lines (29 loc) · 1.79 KB
/
MAFOverlay.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
Pod::Spec.new do |s|
s.name = "MAFOverlay"
s.version = "0.1.1"
s.summary = "Popover-style overlay presentation coordinator for both iPhone and iPad on iOS 7+."
s.description = <<-DESC
MAFOverlay brings popover-style overlay presentations to iPhone and iPad on iOS 7+.
* MAFOverlay presents view controllers as overlays
* Default setup should work for most cases—simply create a coordinator object for the presented view controller
* Handles iOS 7 rotation—simply let the coordinator know about willanimaterotation events
* Works well with MAFOptionActionController for customizable ActionSheet style presentations
* Supports a subset of popover features, including presenting from Bar Button or View
* Supports Cross Dissolve and Cover Vertical transitions, but is customizable
* Uses UIKit's custom modal presentation API
* Provides grain control over animation and layout through layout attributes object and datasource
DESC
s.homepage = "https://github.com/jedlewison/MAFOverlay"
s.screenshots = "https://raw.githubusercontent.com/jedlewison/MAFOverlay/master/OverlayPortrait.png", "https://raw.githubusercontent.com/jedlewison/MAFOverlay/master/OverlayLandscape.png"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Jed Lewison" => "[email protected]" }
s.social_media_url = "http://twitter.com/jedlewison"
s.platform = :ios, "7.0"
s.source = { :git => "https://github.com/jedlewison/MAFOverlay.git", :tag => "0.1.1" }
s.platform = :ios, '7.0'
s.requires_arc = true
s.source_files = 'Pod/Classes/**/*.{h,m}'
s.public_header_files = 'Pod/Classes/*.h'
s.private_header_files = 'Pod/Classes/Private/*.h'
s.frameworks = 'UIKit'
end