Skip to content

Commit c1bf508

Browse files
Update README.md
1 parent 73b5477 commit c1bf508

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

README.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,30 @@ options.subTextColor = colorOrange
118118
viewProcessOutlet.options = options
119119

120120
```
121+
122+
# ProcessView action methods
123+
124+
To start Animation:
125+
```Swift
126+
viewProcess.start()
127+
```
128+
129+
Reverse animation without removing the items:
130+
```Swift
131+
viewProcess.reverse(removeBtns: false)
132+
{
133+
//code run after finishing
134+
}
135+
```
136+
137+
Reverse animation then removing the items:
138+
```Swift
139+
viewProcess.reverse(removeBtns: true)
140+
{
141+
//code run after finishing
142+
}
143+
```
144+
121145

122146
# To get the locations in the circle circumference:
123147

0 commit comments

Comments
 (0)