-
Notifications
You must be signed in to change notification settings - Fork 60
/
ISHPullUp.podspec
22 lines (18 loc) · 1.42 KB
/
ISHPullUp.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = 'ISHPullUp'
s.version = '1.0.7'
s.summary = 'Vertical split view controller with pull up gesture as seen in the iOS 10 Maps and Music app'
s.description = <<-DESC
ISHPullUp provides a simple UIViewControlller subclass with two child controllers. The layout can be managed entirely via delegation and is easy to use with autolayout. A pan gesture allows the user to drag the bottom view controller up or down.
View subclasses are provided to make beautiful iOS 10 style designs easier. ISHPullUpHandleView provides a drag handle as seen in the notification center or Maps app with three states: up, neutral, down. ISHPullUpRoundedView (and ISHPullUpRoundedVisualEffectView) provides the perfect backing view for your bottom view controller with a hairline border, rounded top corners, and a shadow.
DESC
s.homepage = 'https://github.com/iosphere/ISHPullUp'
s.screenshots = 'https://raw.githubusercontent.com/iosphere/ISHPullUp/master/SupportingFiles/screenshot.jpg'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Felix Lamouroux' => '[email protected]' }
s.source = { :git => 'https://github.com/iosphere/ISHPullUp.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/iosphere'
s.ios.deployment_target = '8.0'
s.source_files = 'ISHPullUp/*.{h,m}'
s.frameworks = 'UIKit'
end