Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/AlekseyPleshkov/UIMenuScroll
The horizontal swiping navigation like on Facebook Messenger.
https://github.com/AlekseyPleshkov/UIMenuScroll
cocoapods cocoapods-plugin menu navigation pods uimenuscroll
Last synced: about 1 month ago
JSON representation
The horizontal swiping navigation like on Facebook Messenger.
- Host: GitHub
- URL: https://github.com/AlekseyPleshkov/UIMenuScroll
- Owner: AlekseyPleshkov
- License: mit
- Created: 2018-10-13T08:26:57.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-11-24T16:00:43.000Z (about 6 years ago)
- Last Synced: 2024-11-24T20:51:48.303Z (about 2 months ago)
- Topics: cocoapods, cocoapods-plugin, menu, navigation, pods, uimenuscroll
- Language: Swift
- Homepage:
- Size: 721 KB
- Stars: 19
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-ios - UIMenuScroll - Creating the horizontal swiping navigation how on Facebook Messenger. (UI / Menu)
- awesome-ios-star - UIMenuScroll - Creating the horizontal swiping navigation how on Facebook Messenger. (UI / Menu)
README
# UIMenuScroll
`UIMenuScroll` creating menu how on Facebook Messenger on take photo
![Screenshot](https://github.com/AlekseyPleshkov/UIMenuScroll/blob/master/example.gif?raw=true)
## Installation
[CocoaPods](https://cocoapods.org) is a dependency manager for Cocoa projects. You can install it with the following command:
```bash
$ gem install cocoapods
```To integrate `UIMenuScroll` into your Xcode project using CocoaPods, specify it in your `Podfile`:
```ruby
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '9.0'
use_frameworks!target '' do
pod 'UIMenuScroll', '~> 0.1.0'
end
```Then, run the following command:
```bash
$ pod install
```## How to use
Add UIView to storyboard and set class `UIMenuScrollView` to view.
Add delegate to `UIMenuScrollView` in your ViewController.``` swift
@IBOutlet weak var menuScroll: UIMenuScrollView!// ...
override func viewDidLoad() {
super.viewDidLoad()
// ...
// MenuScroll configuration
menuScroll.delegate = self
menuScroll.spacing = 10.0
// ...
}
```Then create extension for your ViewController.
``` swift
extension ViewController: UIMenuScrollViewDelegate {/// Set count a elements in menu scroll
func menuScroll(menuScroll: UIMenuScrollView) -> Int
{ ... }/// Set options to single button on menu scroll
func menuScroll(menuScroll: UIMenuScrollView, createdButton: UIButton, index: Int)
{ ... }/// Touch button event
func menuScroll(menuScroll: UIMenuScrollView, touchSender: UIButton, index: Int)
{ ... }/// Set options to center indicator image
func menuScroll(menuScroll: UIMenuScrollView) -> UIImage?
{ ... }}
```## About Me
* Aleksey Pleshkov
* Email: [[email protected]](mailto:[email protected])
* Website: [alekseypleshkov.ru](https://alekseypleshkov.ru)## License
`UIMenuScroll` is released under the MIT license. In short, it's royalty-free but you must keep the copyright notice in your code or software distribution.