UIContextMenuActionProvider 在项目上放置不需要的复选标记图标

UIContextMenuActionProvider puts unwanted checkmark icons on items

问题

我正在实施 UIContextMenuInteraction,结果我无法解释或找到修复的行为。从屏幕截图中看到的问题是菜单项有复选标记。这不是故意的,那些复选标记是自动添加的。理想情况下,我想使用 SF Symbols,但我添加的任何图像最终都会成为这个复选标记。即使我将图像设置为 nil,它仍然会添加这个奇怪的复选标记。

采取的其他步骤:重新安装 SF Symbols 和 SF Pro,清理构建,重新启动 xCode/模拟器

转载:模拟器iOS13.3,iPhone7iOS13.3

系统:卡特琳娜 10.15.1,xCode11.3.1

代码:

import UIKit

class ViewController: UIViewController {

  let sampleView = UIView(frame: CGRect(x: 50, y: 300, width: 300, height: 200))

  override func viewDidLoad() {
    super.viewDidLoad()

    view.addSubview(sampleView)
    sampleView.backgroundColor = .systemIndigo


    let interaction = UIContextMenuInteraction(delegate: self)
    sampleView.addInteraction(interaction)
  }
}

extension ViewController: UIContextMenuInteractionDelegate {

  func contextMenuInteraction(
    _ interaction: UIContextMenuInteraction,
    configurationForMenuAtLocation location: CGPoint
  ) -> UIContextMenuConfiguration? {

    let actionProvider: UIContextMenuActionProvider = { [weak self] _ in

      let like = UIAction(
        title: "Like",
        image: UIImage(systemName: "heart"),
        identifier: nil,
        discoverabilityTitle: nil,
        attributes: [],
        state: .on
      ) { _ in

      }

      let copy = UIAction(
        title: "Copy",
        image: nil,
        identifier: nil,
        discoverabilityTitle: nil,
        attributes: [],
        state: .on
      ) { _ in

      }

      let delete = UIAction(
        title: "Delete",
        image: UIImage(systemName: "trash"),
        identifier: nil,
        discoverabilityTitle: nil,
        attributes: [.destructive],
        state: .on
      ) { _ in

      }

      return UIMenu(
        title: "",
        image: nil,
        identifier: nil,
        options: [],
        children: [
          like, copy, delete
        ]
      )
    }


    let config = UIContextMenuConfiguration(identifier: nil, previewProvider: nil, actionProvider: actionProvider)

    return config

  }

}

您需要将 UIAction.state.on 更改为 .off 以删除复选标记。