Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个现有的 NSTableView 设置为接受从查找器拖动的文件名。我需要将 TableView 限制为最多 10 个条目。
如果用户拖入的文件多于可用插槽,我应该接受拖放并略过任何多余的文件,还是应该拒绝拖放?
我会说,填补剩余的插槽,但拒绝下降。从 中返回 YES-validateDrop:...但从 中返回 NO -acceptDrop:...。
-validateDrop:...
-acceptDrop:...
这样,将向用户提示并非所有条目都已添加,但您将有助于添加可添加的项目。