Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fanta1ty/stickyfooterscrollview
StickyFooterScrollView is developed for quick creation of UIScrollView to implement.
https://github.com/fanta1ty/stickyfooterscrollview
cocoapods footer framework ios ios-app ios-swift ios11 pod scrollview sticky swift swift5 ui ui-components uikit uikit-components uikit-framework
Last synced: 25 days ago
JSON representation
StickyFooterScrollView is developed for quick creation of UIScrollView to implement.
- Host: GitHub
- URL: https://github.com/fanta1ty/stickyfooterscrollview
- Owner: fanta1ty
- License: mit
- Created: 2022-07-22T08:10:35.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-08-02T14:05:58.000Z (over 2 years ago)
- Last Synced: 2025-01-18T07:23:50.022Z (26 days ago)
- Topics: cocoapods, footer, framework, ios, ios-app, ios-swift, ios11, pod, scrollview, sticky, swift, swift5, ui, ui-components, uikit, uikit-components, uikit-framework
- Language: Swift
- Homepage:
- Size: 627 KB
- Stars: 7
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
![LOGO](https://github.com/fanta1ty/StickyFooterScrollView/blob/master/StickyFooterScrollView/Assets/logo.png)
# StickyFooterScrollView
StickyFooterScrollView is developed for quick creation of UIScrollView to implement. Usually when creating UIScrollView, developers have to declare and adjust many complex UI constraints to use, StickyFooterScrollView was developed to solve the above problem. StickyFooterScrollView focuses on quick initialization of UIScrollView and its ease of use with a few declared simple functions[![Swift 5.0](https://img.shields.io/badge/Swift-5.0-brightgreen)](https://developer.apple.com/swift/)
[![Version](https://img.shields.io/cocoapods/v/StickyFooterScrollView.svg?style=flat)](https://cocoapods.org/pods/StickyFooterScrollView)
[![License](https://img.shields.io/cocoapods/l/StickyFooterScrollView.svg?style=flat)](https://cocoapods.org/pods/StickyFooterScrollView)
[![Platform](https://img.shields.io/cocoapods/p/StickyFooterScrollView.svg?style=flat)](https://cocoapods.org/pods/StickyFooterScrollView)
[![Email](https://img.shields.io/badge/contact-@[email protected])]([email protected])## Example
To run the example project, clone the repo, and run `pod install` from the Example directory first.
## Requirements
## Installation
StickyFooterScrollView is available through [CocoaPods](https://cocoapods.org). To install
it, simply add the following line to your Podfile:```ruby
pod 'StickyFooterScrollView'
```## Usage
```swift
import StickyFooterScrollView
```
1) Initiate ``StickyFooterScrollView``
```swift
let scrollView = StickyFooterScrollView(minimumFooterTopOffset: 24)
```2) Add ``StickyFooterScrollView`` into parent
```swift
view.addSubview(scrollView)
```3) Setup constraints for ``StickyFooterScrollView``
```swift
scrollView.translatesAutoresizingMaskIntoConstraints = falseNSLayoutConstraint.activate([
scrollView.topAnchor.constraint(equalTo: view.topAnchor),
scrollView.leadingAnchor.constraint(equalTo: view.leadingAnchor),
scrollView.trailingAnchor.constraint(equalTo: view.trailingAnchor),
scrollView.bottomAnchor.constraint(equalTo: view.safeAreaLayoutGuide.bottomAnchor)
])
```4) Setup content view and add into ``StickyFooterScrollView`` to display the main content
```swift
let mainContentView = UIStackView()
mainContentView.axis = .verticallet imageView = UIImageView(image: UIImage(named: "Image"))
mainContentView.addArrangedSubview(imageView)let titleLabel = UILabel()
titleLabel.text = "Hello"
titleLabel.textColor = .red
mainContentView.addArrangedSubview(titleLabel)let descriptionLabel = UILabel()
descriptionLabel.text = "Sticky Footer Scroll View"
descriptionLabel.textColor = .blue
mainContentView.addArrangedSubview(descriptionLabel)
scrollView.applyContentView(mainContentView, with: .init(top: 24, left: 24, bottom: 24, right: 24))
```5) Setup the footer view and add into ``StickyFooterScrollView`` to display the footer content
```swift
let confirmButton = UIButton()
confirmButton.setTitle("OK", for: .normal)scrollView.applyFooterView(confirmButton, with: .init(top: 24, left: 24, bottom: 24, right: 24))
```6) On function ``viewDidAppear``, call the function ``updateLayout`` for constraint UI
```swift
override func viewDidAppear(_ animated: Bool) {
super.viewDidAppear(animated)contentView.scrollView.updateLayout()
}
```![alt text](https://github.com/fanta1ty/StickyFooterScrollView/blob/master/StickyFooterScrollView/Assets/Screenshot.png)
## Author
fanta1ty, [email protected]
## License
StickyFooterScrollView is available under the MIT license. See the LICENSE file for more info.