Popularity
2.2
Stable
Activity
2.2
-
50
6
20

Code Quality Rank: L5
Programming language: Swift
License: MIT License
Tags: UI     Menu    
Latest version: v2.0.0

ALRadialMenu alternatives and similar libraries

Based on the "Menu" category.
Alternatively, view ALRadialMenu alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of ALRadialMenu or a related project?

Add another 'Menu' Library

README

ALRadialMenu

A radial/circular menu featuring spring animations. Written in swift.
Experimenting with fluent interfaces (https://github.com/vandadnp/swift-weekly/blob/master/issue05/README.md)

Screen

Usage

override func viewDidLoad() {
    super.viewDidLoad()
    let gesture = UITapGestureRecognizer(target: self, action: "showMenu:")
    view.addGestureRecognizer(gesture)
}

func showMenu(sender: UITapGestureRecognizer) {

    var buttons = [ALRadialMenuButton]()

    ...
    /// create buttons
    ...

    ALRadialMenu()
        .setButtons(buttons)
        .setAnimationOrigin(sender.locationInView(view))
        .presentInView(view)
}

License

ALRadialMenu is available under the MIT license. See the LICENSE file for more info.


*Note that all licence references and agreements mentioned in the ALRadialMenu README section above are relevant to that project's source code only.