Unfortunately, one of my most important codes suddenly stopped working on my IPhone 8. This is still working within the editor and windows10 preview:
import QtQuick 2.5
import QtQuick.Dialogs 1.0
Item {
Connections {
target: document.childByName(“Text Path”).scriptAdaptor
onEventItemClicked: {
fileDialog.visible = true
}
}
FileDialog {
id: fileDialog
nameFilters: ["*.mp3; *.wav"]
title: qsTr(“Please Choose %1”).arg(dialogText)
//selectFolder: true
folder: shortcuts.home
onAccepted: {
document.childByName(“Text Path”).content.text = ("" + fileDialog.fileUrls)
//document.childByName(“Audio 1”).content.audioFile = “Text 1”
}
onRejected: {
}
}
}
Possible reasons for me are:
- the latest ios 16.4.1 Update that isn’t maybe compatible anymore with the flipabit qt version ( FileDialog class)
- Recently I had to start a new beta testing period in Testflight. Maybe something went wrong there.
Any help welcome!