ИЦ
Size: a a a
ИЦ
ИЦ
DK
DK
ИЦ
YV
DK
E
DK
E
E
AK
let actions = [ … ]
func performAction(at index: Int) {
guard actions.count > index else { return }
action(completion: { performAction(at: index + 1) })
}
performAction(at: 0)
KS
E
KS
E
let actions = [ … ]
func performAction(at index: Int) {
guard actions.count > index else { return }
action(completion: { performAction(at: index + 1) })
}
performAction(at: 0)
KS
DK
E