-
Notifications
You must be signed in to change notification settings - Fork 94
/
TBActionSheet.podspec
23 lines (19 loc) · 1.25 KB
/
TBActionSheet.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = "TBActionSheet"
s.version = "1.7.5"
s.summary = "A Custom&Magical ActionSheet."
s.description = <<-DESC
TBActionSheet is a small library that allows you to substitute Apple's uncustomizable UIActionSheet, with a beautiful and totally customizable actionsheet that you can use in your iOS app. The default style is iOS9/10, you can make your own style. Enjoy!
If you want your UIAlertController to be compatible with iOS7(even lower), you can just replace your UIAlertController with TBAlertController
DESC
s.homepage = "https://github.com/yulingtianxia/TBActionSheet"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "YangXiaoyu" => "[email protected]" }
s.social_media_url = 'https://twitter.com/yulingtianxia'
s.source = { :git => "https://github.com/yulingtianxia/TBActionSheet.git", :tag => s.version.to_s }
s.platform = :ios, '7.0'
s.requires_arc = true
s.source_files = "Source/**/*.{h,m}"
s.public_header_files = "Source/TBActionSheet/TBActionButton.h", "Source/TBActionSheet/TBActionSheet.h", "Source/TBActionSheet/UIView+TBAdditions.h", "Source/TBActionSheet/UIWindow+TBAdditions.h", "Source/TBAlertController/TBAlertController.h"
s.frameworks = 'Foundation', 'UIKit'
end