Я добавил 2 кнопки в мое всплывающее окно SwiftEntryKit , но не могу понять, как что-то сделать после нажатия кнопки.
Я следую шаблону, установленному с помощью , их пример дляalert .
Я пытался ввести что-то в действие dismiss, но это не сработало:
// Ok Button
let okButtonLabelStyle = EKProperty.LabelStyle(font: buttonFont, color: buttonColor)
let okButtonLabel = EKProperty.LabelContent(text: "OK, ACCEPT", style: okButtonLabelStyle)
let okButton = EKProperty.ButtonContent(label: okButtonLabel, backgroundColor: .clear, highlightedBackgroundColor: buttonColor.withAlphaComponent(0.05)) {
SwiftEntryKit.dismiss {
print("okButton")
}
}
Спасибо.