This sample program :
@main
struct DocumentPickerApp: App {
var body: some Scene {
DocumentGroup(newDocument: DocumentPickerDocument()) { file in
ContentView(document: file.$document)
}
}
}
This sample program is running correctly on iOS, iPadOS. But this program is not running correctly on macOS.
Xcode version 15.3, compile correctly all OSs, but on macOS cannot change Picker's file. I cannot understand the reason.
Please tell me, the way of this problem!!
Post
Replies
Boosts
Views
Activity
DocumentGroup(newDocument: RelayDocument()) { file in
ContentView(document: file.$document)
}
このプログラムで、RelayDocument()に引き渡すファイルを選択していましたが、アプリを立ち上げた最初は正しく機能しますが、ファイルを変更しようとしても一度選択したファイルを変更できなくなりました。
先月までは、これで問題なく動いていました。
何が変わったのでしょうか。