File tree Expand file tree Collapse file tree 1 file changed +30
-0
lines changed
Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments