├── .cocoadocs.yml ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── Cartfile ├── Cartfile.resolved ├── Example ├── DEPLOY PROCESS.md ├── Podfile ├── Podfile.lock ├── Scripts │ └── Cocoapods │ │ ├── podInstall.command │ │ ├── podSetup.command │ │ ├── podUpdate.command │ │ └── utils.sh ├── StretchScrollView.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── StretchScrollView-Example.xcscheme ├── StretchScrollView.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings ├── StretchScrollView │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── FromCodeVC.swift │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── sarah.imageset │ │ │ ├── 2670048-starcraft_sarah_kerrigan.jpg │ │ │ └── Contents.json │ ├── Info.plist │ ├── StretchScrollView.gif │ ├── ViewController.swift │ ├── constraints.png │ ├── constraints2.png │ ├── contentMode.png │ ├── customClass.png │ ├── options.png │ └── outlets.png └── Tests │ ├── Info.plist │ └── Tests.swift ├── LICENSE ├── Package.resolved ├── Package.swift ├── README.md ├── Scripts └── Carthage │ ├── carthageAdd.command │ ├── carthageAdd.rb │ ├── carthageInstall.command │ ├── carthageInstallTests.command │ ├── carthageRemove.command │ ├── carthageRemove.rb │ ├── carthageSetup.command │ ├── carthageSetup.rb │ ├── carthageUpdate.command │ ├── utils.rb │ └── utils.sh ├── StretchScrollView tvOS ├── Info.plist └── StretchScrollView_tvOS.h ├── StretchScrollView.podspec ├── StretchScrollView.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ └── StretchScrollView.xcscheme ├── StretchScrollView ├── Assets │ └── .gitkeep ├── Classes │ ├── CGRect+Utils.swift │ ├── StretchScrollView.swift │ ├── UIScrollView+Utils.swift │ ├── UIView+Utils.swift │ └── UIViewController+Utils.swift ├── Info.plist └── StretchScrollView.h ├── checkBuild.command ├── podCheck.command └── podPush.command /.cocoadocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APUtils/StretchScrollView/HEAD/.cocoadocs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APUtils/StretchScrollView/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APUtils/StretchScrollView/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APUtils/StretchScrollView/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cartfile: -------------------------------------------------------------------------------- 1 | github "APUtils/ViewState" >= 1.2.2 -------------------------------------------------------------------------------- /Cartfile.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APUtils/StretchScrollView/HEAD/Cartfile.resolved -------------------------------------------------------------------------------- /Example/DEPLOY PROCESS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APUtils/StretchScrollView/HEAD/Example/DEPLOY PROCESS.md -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APUtils/StretchScrollView/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APUtils/StretchScrollView/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Scripts/Cocoapods/podInstall.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APUtils/StretchScrollView/HEAD/Example/Scripts/Cocoapods/podInstall.command -------------------------------------------------------------------------------- /Example/Scripts/Cocoapods/podSetup.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APUtils/StretchScrollView/HEAD/Example/Scripts/Cocoapods/podSetup.command -------------------------------------------------------------------------------- /Example/Scripts/Cocoapods/podUpdate.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APUtils/StretchScrollView/HEAD/Example/Scripts/Cocoapods/podUpdate.command -------------------------------------------------------------------------------- /Example/Scripts/Cocoapods/utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APUtils/StretchScrollView/HEAD/Example/Scripts/Cocoapods/utils.sh -------------------------------------------------------------------------------- /Example/StretchScrollView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APUtils/StretchScrollView/HEAD/Example/StretchScrollView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/StretchScrollView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APUtils/StretchScrollView/HEAD/Example/StretchScrollView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/StretchScrollView.xcodeproj/xcshareddata/xcschemes/StretchScrollView-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APUtils/StretchScrollView/HEAD/Example/StretchScrollView.xcodeproj/xcshareddata/xcschemes/StretchScrollView-Example.xcscheme -------------------------------------------------------------------------------- /Example/StretchScrollView.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APUtils/StretchScrollView/HEAD/Example/StretchScrollView.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/StretchScrollView.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APUtils/StretchScrollView/HEAD/Example/StretchScrollView.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/StretchScrollView.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APUtils/StretchScrollView/HEAD/Example/StretchScrollView.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Example/StretchScrollView/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APUtils/StretchScrollView/HEAD/Example/StretchScrollView/AppDelegate.swift -------------------------------------------------------------------------------- /Example/StretchScrollView/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APUtils/StretchScrollView/HEAD/Example/StretchScrollView/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/StretchScrollView/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APUtils/StretchScrollView/HEAD/Example/StretchScrollView/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/StretchScrollView/FromCodeVC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APUtils/StretchScrollView/HEAD/Example/StretchScrollView/FromCodeVC.swift -------------------------------------------------------------------------------- /Example/StretchScrollView/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APUtils/StretchScrollView/HEAD/Example/StretchScrollView/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/StretchScrollView/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APUtils/StretchScrollView/HEAD/Example/StretchScrollView/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/StretchScrollView/Images.xcassets/sarah.imageset/2670048-starcraft_sarah_kerrigan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APUtils/StretchScrollView/HEAD/Example/StretchScrollView/Images.xcassets/sarah.imageset/2670048-starcraft_sarah_kerrigan.jpg -------------------------------------------------------------------------------- /Example/StretchScrollView/Images.xcassets/sarah.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APUtils/StretchScrollView/HEAD/Example/StretchScrollView/Images.xcassets/sarah.imageset/Contents.json -------------------------------------------------------------------------------- /Example/StretchScrollView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APUtils/StretchScrollView/HEAD/Example/StretchScrollView/Info.plist -------------------------------------------------------------------------------- /Example/StretchScrollView/StretchScrollView.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APUtils/StretchScrollView/HEAD/Example/StretchScrollView/StretchScrollView.gif -------------------------------------------------------------------------------- /Example/StretchScrollView/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APUtils/StretchScrollView/HEAD/Example/StretchScrollView/ViewController.swift -------------------------------------------------------------------------------- /Example/StretchScrollView/constraints.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APUtils/StretchScrollView/HEAD/Example/StretchScrollView/constraints.png -------------------------------------------------------------------------------- /Example/StretchScrollView/constraints2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APUtils/StretchScrollView/HEAD/Example/StretchScrollView/constraints2.png -------------------------------------------------------------------------------- /Example/StretchScrollView/contentMode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APUtils/StretchScrollView/HEAD/Example/StretchScrollView/contentMode.png -------------------------------------------------------------------------------- /Example/StretchScrollView/customClass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APUtils/StretchScrollView/HEAD/Example/StretchScrollView/customClass.png -------------------------------------------------------------------------------- /Example/StretchScrollView/options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APUtils/StretchScrollView/HEAD/Example/StretchScrollView/options.png -------------------------------------------------------------------------------- /Example/StretchScrollView/outlets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APUtils/StretchScrollView/HEAD/Example/StretchScrollView/outlets.png -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APUtils/StretchScrollView/HEAD/Example/Tests/Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APUtils/StretchScrollView/HEAD/Example/Tests/Tests.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APUtils/StretchScrollView/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APUtils/StretchScrollView/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APUtils/StretchScrollView/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APUtils/StretchScrollView/HEAD/README.md -------------------------------------------------------------------------------- /Scripts/Carthage/carthageAdd.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APUtils/StretchScrollView/HEAD/Scripts/Carthage/carthageAdd.command -------------------------------------------------------------------------------- /Scripts/Carthage/carthageAdd.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APUtils/StretchScrollView/HEAD/Scripts/Carthage/carthageAdd.rb -------------------------------------------------------------------------------- /Scripts/Carthage/carthageInstall.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APUtils/StretchScrollView/HEAD/Scripts/Carthage/carthageInstall.command -------------------------------------------------------------------------------- /Scripts/Carthage/carthageInstallTests.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APUtils/StretchScrollView/HEAD/Scripts/Carthage/carthageInstallTests.command -------------------------------------------------------------------------------- /Scripts/Carthage/carthageRemove.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APUtils/StretchScrollView/HEAD/Scripts/Carthage/carthageRemove.command -------------------------------------------------------------------------------- /Scripts/Carthage/carthageRemove.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APUtils/StretchScrollView/HEAD/Scripts/Carthage/carthageRemove.rb -------------------------------------------------------------------------------- /Scripts/Carthage/carthageSetup.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APUtils/StretchScrollView/HEAD/Scripts/Carthage/carthageSetup.command -------------------------------------------------------------------------------- /Scripts/Carthage/carthageSetup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APUtils/StretchScrollView/HEAD/Scripts/Carthage/carthageSetup.rb -------------------------------------------------------------------------------- /Scripts/Carthage/carthageUpdate.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APUtils/StretchScrollView/HEAD/Scripts/Carthage/carthageUpdate.command -------------------------------------------------------------------------------- /Scripts/Carthage/utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APUtils/StretchScrollView/HEAD/Scripts/Carthage/utils.rb -------------------------------------------------------------------------------- /Scripts/Carthage/utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APUtils/StretchScrollView/HEAD/Scripts/Carthage/utils.sh -------------------------------------------------------------------------------- /StretchScrollView tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APUtils/StretchScrollView/HEAD/StretchScrollView tvOS/Info.plist -------------------------------------------------------------------------------- /StretchScrollView tvOS/StretchScrollView_tvOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APUtils/StretchScrollView/HEAD/StretchScrollView tvOS/StretchScrollView_tvOS.h -------------------------------------------------------------------------------- /StretchScrollView.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APUtils/StretchScrollView/HEAD/StretchScrollView.podspec -------------------------------------------------------------------------------- /StretchScrollView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APUtils/StretchScrollView/HEAD/StretchScrollView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /StretchScrollView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APUtils/StretchScrollView/HEAD/StretchScrollView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /StretchScrollView.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APUtils/StretchScrollView/HEAD/StretchScrollView.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /StretchScrollView.xcodeproj/xcshareddata/xcschemes/StretchScrollView.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APUtils/StretchScrollView/HEAD/StretchScrollView.xcodeproj/xcshareddata/xcschemes/StretchScrollView.xcscheme -------------------------------------------------------------------------------- /StretchScrollView/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /StretchScrollView/Classes/CGRect+Utils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APUtils/StretchScrollView/HEAD/StretchScrollView/Classes/CGRect+Utils.swift -------------------------------------------------------------------------------- /StretchScrollView/Classes/StretchScrollView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APUtils/StretchScrollView/HEAD/StretchScrollView/Classes/StretchScrollView.swift -------------------------------------------------------------------------------- /StretchScrollView/Classes/UIScrollView+Utils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APUtils/StretchScrollView/HEAD/StretchScrollView/Classes/UIScrollView+Utils.swift -------------------------------------------------------------------------------- /StretchScrollView/Classes/UIView+Utils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APUtils/StretchScrollView/HEAD/StretchScrollView/Classes/UIView+Utils.swift -------------------------------------------------------------------------------- /StretchScrollView/Classes/UIViewController+Utils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APUtils/StretchScrollView/HEAD/StretchScrollView/Classes/UIViewController+Utils.swift -------------------------------------------------------------------------------- /StretchScrollView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APUtils/StretchScrollView/HEAD/StretchScrollView/Info.plist -------------------------------------------------------------------------------- /StretchScrollView/StretchScrollView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APUtils/StretchScrollView/HEAD/StretchScrollView/StretchScrollView.h -------------------------------------------------------------------------------- /checkBuild.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APUtils/StretchScrollView/HEAD/checkBuild.command -------------------------------------------------------------------------------- /podCheck.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APUtils/StretchScrollView/HEAD/podCheck.command -------------------------------------------------------------------------------- /podPush.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APUtils/StretchScrollView/HEAD/podPush.command --------------------------------------------------------------------------------