-
-
Notifications
You must be signed in to change notification settings - Fork 21
Add actions at once #14
Copy link
Copy link
Closed
Labels
Description
Alertift can only add action one by one for now.
It will make it possible to add actions at once.
Alertift.actionSheet(message: "Which food do you like?")
.popover(sourceView: self.view, sourceRect: button.frame)
.actions([.default("🍣"), .default("🍎"), .default("🍖"), .default("🍅")]) { action, index in
if action.style == .cancel {
return
}
Alertift.alert(message: "\(index). \(action.title!)")
.action(.default("OK"))
.show()
}
.show(on: self)Reactions are currently unavailable