Thank you for the hint.
This is what I did.
var url = secureCodingItem as? URL
if url == nil {
let data = secureCodingItem as? Data
if let data,
let absoluteString = String(data: data, encoding: .utf8)
{
url = URL(string: absoluteString)
}
}
I've enabled "-com.apple.CoreData.SQLDebug 1" in my app target to see the sql logs and with Xcode 15b5 the app seems to loop (fetching infinite some sql data).
Maybe that's the reason for your blocked UI too.
After many many tries with above solutions, I finally had success with:
Apple Watch > Settings > Bluetooth off/on
and the error was gone!
At least in my case ;-)
Thank you for the hint.
This is what I did.
var url = secureCodingItem as? URL
if url == nil {
let data = secureCodingItem as? Data
if let data,
let absoluteString = String(data: data, encoding: .utf8)
{
url = URL(string: absoluteString)
}
}
I've enabled "-com.apple.CoreData.SQLDebug 1" in my app target to see the sql logs and with Xcode 15b5 the app seems to loop (fetching infinite some sql data).
Maybe that's the reason for your blocked UI too.
After many many tries with above solutions, I finally had success with:
Apple Watch > Settings > Bluetooth off/on
and the error was gone!
At least in my case ;-)