forked from reydanro/UIImageViewAligned
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUIImageViewAligned.podspec
More file actions
21 lines (14 loc) · 889 Bytes
/
UIImageViewAligned.podspec
File metadata and controls
21 lines (14 loc) · 889 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = "UIImageViewAligned"
s.version = "0.0.1"
s.summary = "A UIImageView subclass which allows you to align the image left/right/top/bottom, even when contentMode is AspectFit."
s.description = "It is a subclass of UIImageView that allows you to customize the alignment of the displayed image inside the view's frame. This works even if the contentMode is set to AspectFit, AspectFill or ScaleToFill."
s.homepage = "https://github.com/reydanro/UIImageViewAligned"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = "Andrei Stanescu"
s.social_media_url = "http://www.mindtreatstudios.com/"
s.platform = :ios
s.source = { :git => "https://github.com/reydanro/UIImageViewAligned.git", :tag => "pod-0.0.1" }
s.source_files = "UIImageViewAligned"
s.framework = "UIKit"
end