forked from regexident/DLAlertView
-
Notifications
You must be signed in to change notification settings - Fork 0
/
DLAlertView.podspec
37 lines (31 loc) · 1.76 KB
/
DLAlertView.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
Pod::Spec.new do |s|
s.name = "DLAlertView"
s.version = "1.2.2"
s.summary = "UIAlertView replacement that can embed custom content views, is fully themable and let's you use a delegate and/or blocks."
s.description = <<-DESC
DLAlertView is an API-compatible UIAlertView replacement that can embed custom content views, is fully themable and let's you use a delegate and/or blocks.
## Features
* Same API as `UIAlertView` (+ much, much more!).
* Use delegates and/or blocks!
* Animations that match UIAlertView in iOS 7.
* Default look that matches UIAlertView in iOS 7.
* Any number of buttons per alert.
* Any number of textfields per alert.
* Optional custom content view.
* Change title/message/contentView while shown.
* Add textfields while shown.
* Add buttons while shown.
* Apply custom themes to your individual alerts.
* Apply individual themes to your individual textfields.
* Apply individual themes to your individual buttons.
* Change themes of alert/textfields/buttons while shown.
* Crossfade between themes.
DESC
s.homepage = "https://github.com/regexident/DLAlertView"
s.license = { :type => 'BSD-3', :file => 'LICENSE' }
s.author = { "Vincent Esche" => "[email protected]" }
s.platform = :ios, '5.1'
s.source = { :git => "https://github.com/regexident/DLAlertView.git", :tag => '1.2.2' }
s.source_files = 'DLAlertView/Classes/*.{h,m}'
s.requires_arc = true
end