Skip to content

Commit

Permalink
[podspec] Cocoapod support
Browse files Browse the repository at this point in the history
  • Loading branch information
wimagguc committed Apr 2, 2015
1 parent 07de6c7 commit 9f179ee
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions CustomIOSAlertView.podspec
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

0 comments on commit 9f179ee

Please sign in to comment.