-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUIViewController+Dismissible.podspec
38 lines (35 loc) · 1.67 KB
/
UIViewController+Dismissible.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
33
34
35
36
37
38
#
# Be sure to run `pod lib lint NAME.podspec' to ensure this is a
# valid spec and remove all comments before submitting the spec.
#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "UIViewController+Dismissible"
s.version = File.read('VERSION')
s.summary = "Let any modally presented view to be able to be dismissed by touching outside of it."
s.description = <<-DESC
Use it by including head file and adding
[self.view.window addGestureRecognizer:self.tapBehindGesture];
in viewDidAppear:
[self.view.window removeGestureRecognizer:self.tapBehindGesture];
in viewWillDisappear:
DESC
s.homepage = "https://github.com/DavydLiu/UIViewController-Dismissible"
# s.screenshots = "www.example.com/screenshots_1", "www.example.com/screenshots_2"
s.license = 'MIT'
s.source = { :git => "https://github.com/DavydLiu/UIViewController-Dismissible.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/DavydLiu'
s.platform = :ios, '7.0'
s.ios.deployment_target = '7.0'
# s.osx.deployment_target = '10.7'
s.requires_arc = true
s.source_files = 'UIViewController+Dismissible/'
# s.resources = 'Assets/*.png'
# s.ios.exclude_files = 'Classes/osx'
# s.osx.exclude_files = 'Classes/ios'
# s.public_header_files = 'Classes/**/*.h'
# s.frameworks = 'SomeFramework', 'AnotherFramework'
# s.dependency 'JSONKit', '~> 1.4'
end