Skip to content

Commit 9f179ee

Browse files
committed
[podspec] Cocoapod support
1 parent 07de6c7 commit 9f179ee

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

CustomIOSAlertView.podspec

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
Pod::Spec.new do |s|
2+
3+
s.name = "CustomIOSAlertView"
4+
s.version = "0.9.1"
5+
s.summary = "Custom UIAlertView. Continue adding images and UIViews to dialogs on iOS7 and iOS8 as well."
6+
7+
s.description = <<-DESC
8+
The addSubview is not available in UIAlertView in iOS7 or iOS8 any more. The view hierarchy for this
9+
class is private and must not be modified. As a solution, this class creates an iOS-style dialog which
10+
you can extend with any UIViews or buttons. The animations and the looks are copied too and no images
11+
or other resources are needed.
12+
DESC
13+
14+
s.homepage = "https://github.com/wimagguc/ios-custom-alertview"
15+
s.screenshots = "https://github.com/wimagguc/ios-custom-alertview/raw/master/Docs/screen.png"
16+
17+
s.license = { :type => "MIT", :file => "LICENSE.md" }
18+
19+
s.author = { "Richard Dancsi" => "wimagguc@gmail.com" }
20+
s.social_media_url = "http://twitter.com/wimagguc"
21+
22+
s.platform = :ios
23+
24+
s.source = { :git => "https://github.com/wimagguc/ios-custom-alertview.git", :tag => "0.9.1" }
25+
26+
s.source_files = "CustomIOSAlertView/CustomIOSAlertView/View/**/*.{h,m}"
27+
28+
s.requires_arc = true
29+
30+
end

0 commit comments

Comments
 (0)