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 year 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 7 years ago)
- Default Branch: master
- Last Pushed: 2018-11-24T16:00:43.000Z (over 7 years ago)
- Last Synced: 2025-03-25T02:51:19.460Z (over 1 year ago)
- Topics: cocoapods, cocoapods-plugin, menu, navigation, pods, uimenuscroll
- Language: Swift
- Homepage:
- Size: 721 KB
- Stars: 20
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# UIMenuScroll
`UIMenuScroll` creating menu how on Facebook Messenger on take photo

## 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: [im@alekseypleshkov.ru](mailto:im@alekseypleshkov.ru)
* 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.