-
Notifications
You must be signed in to change notification settings - Fork 394
/
CustomIOSAlertView.podspec
30 lines (20 loc) · 1.2 KB
/
CustomIOSAlertView.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
Pod::Spec.new do |s|
s.name = "CustomIOSAlertView"
s.version = "0.9.5"
s.summary = "Custom UIAlertView. Continue adding images and UIViews to dialogs on iOS7+."
s.description = <<-DESC
The addSubview is not available in UIAlertView in iOS7+. The view hierarchy for this
class is private and must not be modified. As a solution, this class creates an iOS-style dialog which
you can extend with any UIViews or buttons. The animations and the looks are copied too and no images
or other resources are needed.
DESC
s.homepage = "https://github.com/wimagguc/ios-custom-alertview"
s.screenshots = "https://github.com/wimagguc/ios-custom-alertview/raw/master/Docs/screen.png"
s.license = { :type => "MIT", :file => "LICENSE.md" }
s.author = { "Richard Dancsi" => "[email protected]" }
s.social_media_url = "http://twitter.com/wimagguc"
s.platform = :ios
s.source = { :git => "https://github.com/wimagguc/ios-custom-alertview.git", :tag => "0.9.5" }
s.source_files = "CustomIOSAlertView/CustomIOSAlertView/View/**/*.{h,m}"
s.requires_arc = true
end