forked from sochalewski/UIImageViewAlignedSwift
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUIImageViewAlignedSwift.podspec
More file actions
15 lines (15 loc) · 909 Bytes
/
UIImageViewAlignedSwift.podspec
File metadata and controls
15 lines (15 loc) · 909 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Pod::Spec.new do |s|
s.name = "UIImageViewAlignedSwift"
s.version = "0.7.0"
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/sochalewski/UIImageViewAlignedSwift"
s.license = 'MIT'
s.author = { "Piotr Sochalewski" => "sochalewski@gmail.com" }
s.source = { :git => "https://github.com/sochalewski/UIImageViewAlignedSwift.git", :tag => s.version.to_s }
s.platforms = { :ios => "8.0", :tvos => "9.0" }
s.requires_arc = true
s.source_files = '*.swift'
s.frameworks = 'UIKit'
s.swift_version = '5.0'
end