gpt4 book ai didi

swift - iOS 13 - UIMenu 是否存在不显示其图像的错误?

转载 作者:行者123 更新时间:2023-11-28 13:25:30 27 4
gpt4 key购买 nike

将以下代码粘贴到项目中:

'Device Honey' 旁边没有显示图像,即 UIMenu但是图像显示在“复制”旁边,即 UIACtion

我做错了什么吗?如果这是一个错误?有解决方法吗?

class ViewController: UIViewController {
let tableview: UITableView = {
let tv = UITableView()
tv.frame = UIScreen.main.bounds

return tv
}()

override func viewDidLoad() {
super.viewDidLoad()
view.addSubview(tableview)
tableview.register(UITableViewCell.self, forCellReuseIdentifier: "cell")
tableview.delegate = self
tableview.dataSource = self
}
}

extension ViewController: UITableViewDelegate, UITableViewDataSource {
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return 1
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
var cell = tableView.dequeueReusableCell(withIdentifier: "cell", for: indexPath)
if cell.detailTextLabel == nil {
cell = UITableViewCell(style: .value1, reuseIdentifier: "cell")
}
cell.textLabel?.text = "Honey"
cell.detailTextLabel?.text = "iOS developer"

return cell
}

@available(iOS 13.0, *)
func tableView(_ tableView: UITableView, contextMenuConfigurationForRowAt indexPath: IndexPath, point: CGPoint) -> UIContextMenuConfiguration? {

return UIContextMenuConfiguration(identifier: nil, previewProvider: nil, actionProvider: { suggestedActions in

return self.makeContextMenu(for: indexPath)
})
}

@available(iOS 13.0, *)
func makeContextMenu(for indexPath: IndexPath) -> UIMenu? {

let copyAction = UIAction(title: "Copy", image: UIImage(systemName: "square.and.arrow.up")) { [weak self] _ in
guard let self = self else { return }
let cell = self.tableview.cellForRow(at: indexPath)
let pasteboard = UIPasteboard.general
pasteboard.string = cell?.detailTextLabel?.text
}

guard let cell = self.tableview.cellForRow(at: indexPath), let title = cell.textLabel?.text else { return nil}
return UIMenu(title: "Device \(title) ", image: UIImage(systemName: "square.and.arrow.up"), children: [copyAction])
}
}

enter image description here

在 Apple 的 WWDC 演示中,他们能够做到这一点,如下所示:

enter image description here

最佳答案

上下文菜单有两部分:预览和菜单。两者都是可选的。 Apple 屏幕截图中的“杂货”是预览,而不是菜单。默认情况下,对单元格进行快照并将快照显示为预览。 Apple 屏幕截图中的菜单本身没有图像也没有标题。这也是你应该做的!最后一行

return UIMenu(...

...应该没有标题和图像。此菜单是顶层 菜单,它包含所有其他内容并返回,并且显示方式不同(如您自己的屏幕截图所示)。它没有标题看起来最好,而且根本无法显示图像。它的工作是包装其他所有内容并提供标识符,仅此而已。

然后你会得到这样的东西:

enter image description here

关于swift - iOS 13 - UIMenu 是否存在不显示其图像的错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58422167/

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