diff --git a/CWPopup.podspec b/CWPopup.podspec index 26654f4..5d5f1e4 100644 --- a/CWPopup.podspec +++ b/CWPopup.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "CWPopup" - s.version = "1.2.3" + s.version = "1.2.4" s.summary = "A category on UIViewController to present a popup view controller." s.description = "CWPopup adds a category on UIViewController to present a popup view controller. It offers an animated and non-animated presentation of the popup, similarly to presenting a modal controller or pushing a view controller." s.homepage = "http://github.com/cezarywojcik/CWPopup" diff --git a/CWPopup/UIViewController+CWPopup.m b/CWPopup/UIViewController+CWPopup.m index 3fe00d6..bed9ae0 100644 --- a/CWPopup/UIViewController+CWPopup.m +++ b/CWPopup/UIViewController+CWPopup.m @@ -9,7 +9,9 @@ #import "UIViewController+CWPopup.h" #import #import +#if __IPHONE_OS_VERSION_MAX_ALLOWED >= 70000 @import Accelerate; +#endif #import @interface UIImage (ImageBlur) diff --git a/README.md b/README.md index 8b3a3cd..3d6e4dd 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ CWPopup is a category on UIViewController that allows you to easily make popup v ### [CocoaPods](http://www.cocoapods.org) -`pod 'CWPopup', '~> 1.2.3'` +`pod 'CWPopup', '~> 1.2.4'` ### Manual