如何在 UIContextMenuConfiguration 中制作不可点击的菜单项?目前,当我单击菜单项时,什么也没有发生,菜单就关闭了。单击该项目时,我需要菜单不要关闭。
这是一些代码:
@available(iOS 13.0, *)
var contextMenuConfiguration: UIContextMenuConfiguration {
let configuration = UIContextMenuConfiguration(
identifier: nil,
previewProvider: nil
) { [weak self] _ -> UIMenu? in
guard let strongSelf = self else { return nil }
var actions: [UIAction] = []
actions.append(
UIAction(title: "\(l10n(.id)) \(strongSelf.connection.id)",
image: UIImage(systemName: "info.circle")) { _ in
strongSelf.delegate?.idPressed()
})
这里是我的函数代码:
func idPressed() {
<#code#>
}