gpt4 book ai didi

swift - 在 SwiftEntryKit 中按下条目按钮后执行操作

转载 作者:搜寻专家 更新时间:2023-11-01 06:11:48 28 4
gpt4 key购买 nike

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

}

谢谢。

最佳答案

你必须设置entryInteraction.absorbTouches对于 attributes SwiftEntryKit.display的属性(property).

var attributes = EKAttributes()
attributes.entryInteraction = .absorbTouches

[...]

SwiftEntryKit.display(entry: <entry variable>, using: attributes)

关于swift - 在 SwiftEntryKit 中按下条目按钮后执行操作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54775659/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com