我在SwiftEntryKit弹出窗口中添加了2个按钮,但是在按下按钮后无法弄清楚该怎么做。
我遵循用their example for alerts设置的模式。
我尝试在撤消操作中输入一些内容,但没有成功:
// 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")
}
}
谢谢。
答案 0 :(得分:3)
对于entryInteraction
的{{1}}属性,必须将.absorbTouches
设置为attributes
。
SwiftEntryKit.display