Initial commit

This commit is contained in:
Drew Olbrich
2019-02-03 12:22:40 -08:00
commit 64e4ae6a9c
99 changed files with 17449 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
Pod::Spec.new do |s|
s.name = 'ScrollingContentViewController'
s.version = '1.0.0'
s.summary = 'A Swift class that simplifies making a view controller\'s view scrollable'
s.description = <<-DESC
ScrollingContentViewController makes it easy to create a view controller with a
scrolling content view, or to convert an existing static view controller into
one that scrolls. Most importantly, it takes care of several tricky undocumented
edge cases involving the keyboard, navigation controllers, and device rotations.
DESC
s.homepage = 'https://github.com/drewolbrich/ScrollingContentViewController'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'drewolbrich' => 'drew@retroactivefiasco.com' }
s.source = { :git => 'https://github.com/drewolbrich/ScrollingContentViewController.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/drewolbrich'
s.ios.deployment_target = '11.0'
s.source_files = 'Source/**/*.swift'
s.frameworks = 'UIKit'
s.swift_version = '4.2'
end