- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
根据文档,它应该非常简单。 List
示例:https://developer.apple.com/documentation/swiftui/list/ondrop(of:istargeted:perform:)-75hvy#
UTType
应该是限制 SwiftUI 对象可以接收的参数。在我的例子中,我只想接受 Apps
。 UTType
是 .applicationBundle
:https://developer.apple.com/documentation/uniformtypeidentifiers/uttype/3551459-applicationbundle
但它不起作用。 SwiftUI 对象永远不会改变状态,也永远不会接受放置。关闭永远不会运行。无论是在 Lists
、H/VStacks
、Buttons
等等。 pdf
类型似乎也不起作用,许多其他类型也是如此。如果 fileURL
,我唯一可以使用的类型,主要是没有限制。
我不确定是我做错了什么,还是 SwiftUI 在 Mac 上只工作了一半。
代码如下:
List(appsToIgnore, id: \.self, selection: $selection) {
Text($0)
}
.onDrop(of: [.applicationBundle, .application], isTargeted: isTargeted) { providers in
print("hehe")
return true
}
在 UTType
数组中替换或仅添加 .fileURL
可以使放置工作但没有任何类型限制。
我还尝试在 ForEach
上使用 .onInsert
(https://developer.apple.com/documentation/swiftui/foreach/oninsert(of:perform:)-2whxl#),并通过适当的 DropDelegate(https://developer.apple.com/documentation/swiftui/dropdelegate#)但保持得到相同的结果。似乎 macOS 的 SwiftUI drop 还没有工作,但我找不到关于这个的任何官方信息。在文档中写的是 macOS 11.0+
所以我希望它能工作?
感谢任何信息!谢谢。
最佳答案
你需要手动验证,使用 DropDelegate
拖过什么样的文件。
这是可能方法的简化演示。使用 Xcode 13/macOS 11.6 测试
let delegate = MyDelegate()
...
List(appsToIgnore, id: \.self, selection: $selection) {
Text($0)
}
.onDrop(of: [.fileURL], delegate: delegate) // << accept file URLs
和验证部分一样
class MyDelegate: DropDelegate {
func validateDrop(info: DropInfo) -> Bool {
// find provider with file URL
guard info.hasItemsConforming(to: [.fileURL]) else { return false }
guard let provider = info.itemProviders(for: [.fileURL]).first else { return false }
var result = false
if provider.canLoadObject(ofClass: String.self) {
let group = DispatchGroup()
group.enter() // << make decoding sync
// decode URL from item provider
_ = provider.loadObject(ofClass: String.self) { value, _ in
defer { group.leave() }
guard let fileURL = value, let url = URL(string: fileURL) else { return }
// verify type of content by URL
let flag = try? url.resourceValues(forKeys: [.contentTypeKey]).contentType == .applicationBundle
result = flag ?? false
}
// wait a bit for verification result
_ = group.wait(timeout: .now() + 0.5)
}
return result
}
func performDrop(info: DropInfo) -> Bool {
// handling code is here
return true
}
}
关于macos - 有没有人能够限制在 SwiftUI 3 中放置在 mac 上的对象的类型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69771509/
我正在使用 Java 编写一个时钟程序,该程序能够“滴答作响”,但它存在问题。我认为它与 getter 和 setter 或 toString() 方法有关。 计数器类 package clock;
const Index = () => { // Ref Links const frefLinks = { 1: useRef(1), 2: useRef(2), 3: useRef(3
所以我读了here不能 pickle 装饰函数。确实: import multiprocessing as mp def deco(f): def wrapper(*args, **kwarg
我在go1.11.2 linux/amd64 版本。当包godog使用 go get github.com/DATA-DOG/godog/ 安装,godog 可执行文件在 $GOPATH/bin/中创
如何正确压缩字符串,以便 PHP 能够解压缩? 我试过这个: public static byte[] compress(String string) throws IOException {
我们这里的问题是表明 在测试中使用 Kleene 代数。 在 b 的值由 p 保留的情况下,我们有交换条件 bp = pb;两个程序之间的等价性简化为等式 在 b 的值不被 p 保留的情况下,我们有交
我有一个与我的网络相关的非常奇怪的问题,我在具有多个接口(interface)的 VirtualBox 上安装了 RDO Grizzly OpenStack。 虚拟盒子: eth0 - managem
我正在尝试使用 Passport.js授权谷歌OAuth2在 Node.js .我整个星期都在尝试让它工作,但不知道为什么它不工作,所以现在我求助于 stack 寻求一些潜在的帮助。我已经尝试了所有在
我是一名优秀的程序员,十分优秀!