在SwiftEntryKit

时间:2019-02-19 22:05:21

标签: swift

我在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")
    }

}

谢谢。

1 个答案:

答案 0 :(得分:3)

对于entryInteraction的{​​{1}}属性,必须将.absorbTouches设置为attributes

SwiftEntryKit.display