Dactyloidae iOS initial commit

This commit is contained in:
wuggy 2026-06-26 21:04:09 -07:00
commit 7154a0497e
2123 changed files with 197052 additions and 0 deletions

View file

@ -0,0 +1,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://twitter.com/MTStudios_"
s.platform = :ios
s.source = { :git => "https://github.com/reydanro/UIImageViewAligned.git", :tag => "[ADD THIS]" }
s.source_files = "UIImageViewAligned"
s.framework = "UIKit"
end