将以下代码粘贴到项目中:
“设备蜂蜜”(即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])
}
}
在Apple的WWDC演示中,他们可以按如下所示进行操作:
答案 0 :(得分:1)
上下文菜单包含两个部分:预览和菜单。两者都是可选的。 Apple屏幕快照中的“杂货”是预览,而不是菜单。默认情况下,将对单元进行快照,并且快照将显示为预览。 Apple屏幕快照中的菜单本身没有图像,也没有标题。那也是您应该做的!最后一行
return UIMenu(...
...应该没有标题,也没有图像。此菜单是包装所有其他内容并返回的菜单,它是顶层菜单,并且显示方式有所不同(如您自己的屏幕快照所示)。没有标题看起来最好,而且根本无法显示图像。它的工作是包装其他所有东西并提供一个标识符,仅此而已。
然后您将得到类似这样的内容:
答案 1 :(得分:0)