We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef98cca commit e605aacCopy full SHA for e605aac
README.md
@@ -128,20 +128,23 @@ viewProcessOutlet.options = options
128
129
To start Animation:
130
```Swift
131
-viewProcess.start()
+viewProcess.start(completed:
132
+{
133
+ //code to run after finishing
134
+})
135
```
136
137
Reverse animation without removing the items:
138
-viewProcess.reverse(removeBtns: false)
139
+viewProcess.reset(removeItems: false)
140
{
141
//code to run after finishing
142
}
143
144
145
Reverse animation then removing the items:
146
-viewProcess.reverse(removeBtns: true)
147
+viewProcess.reset(removeItems: true)
148
149
150
0 commit comments