如何区分用户的意图与iOS 11中的.automatic DropProposal

时间:2017-07-21 03:05:06

标签: ios drag

我有一个适用于UIDropProposal中.automatic意图的应用程序。像这样:

UITableViewDropProposal(operation: .copy, intent: .automatic)

我的问题是我似乎无法弄清楚用户的意图?他打算将数据插入新单元格还是只覆盖现有单元格。所有的动画都很好。

但是在

func tableView(_ tableView: UITableView, performDropWith coordinator: UITableViewDropCoordinator) {

我需要能够告诉用户最终的意图。

如何做到这一点?

我错过了什么?

感谢。

1 个答案:

答案 0 :(得分:1)

coordinator.proposal.intent应该提供UITableViewDropIntent,如果在insertAtDestinationIndexPath中指定了insertIntoDestinationIndexPath,则会在.automatictableView(:dropSessionDidUpdate)之间进行选择。 WWDC视频说表视图将在两者之间进行选择。但是,还没有足够的进展来验证它。