Skip to content

Commit 24c8b45

Browse files
authored
Update README.md
1 parent 4474ae1 commit 24c8b45

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

README.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,24 @@
11
# MultipleLayerArcMenu
2+
MultipleLayerArc Menu is to animate multiple buttons and place them in prefered circular, semi circular or quarter circular format. This menu buttons can be emerged from any corner of the screen with the modified angle. As per the git code, it is expanding from right bottom corner of the screen. Number of buttons in each layer is based on the array of dictionaries passed from a viewcontroller.
3+
# ScreenShot
4+
# Compatability
5+
Version - Swift 3+, iOS 9+
6+
# Example
7+
```
8+
self._circularMenuVC = MultipleLayerArcMenu.init(listOfButtonDetails: arrayOfMenuButtons, viewController: self, centerButtonFrame: self.optionButton.frame, circularButton: self.optionButton, startAngle: 95, totalAngle: 95, radius: -80)
9+
self._circularMenuVC?._delegateSemiCircularMenu = self
10+
self._circularMenuVC?.showMenuOption()
11+
```
12+
13+
# CallBacks
14+
```ruby
15+
SemiCircularMenuDelegate
16+
17+
---Delegate Method---
18+
19+
func SemiCircularMenuClickedButtonAtIndex(buttonIndex: Int, buttonOutlet: UIButton)
20+
```
21+
22+
# Manual
23+
1. Add MultipleLayerArcMenu.swift to your project
24+
2. Import the same in preferable viewcontroller and initialize as per example (above)

0 commit comments

Comments
 (0)