-
Notifications
You must be signed in to change notification settings - Fork 394
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
Pod::Spec.new do |s| | ||
|
||
s.name = "CustomIOSAlertView" | ||
s.version = "0.9.1" | ||
s.summary = "Custom UIAlertView. Continue adding images and UIViews to dialogs on iOS7 and iOS8 as well." | ||
|
||
s.description = <<-DESC | ||
The addSubview is not available in UIAlertView in iOS7 or iOS8 any more. 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.1" } | ||
|
||
s.source_files = "CustomIOSAlertView/CustomIOSAlertView/View/**/*.{h,m}" | ||
|
||
s.requires_arc = true | ||
|
||
end |