Post not yet marked as solved
use #avaliable on mine works:
if #available(iOS 16.0, *) {
...
} else {
...
}
I'm not sure why yours don't.
Post not yet marked as solved
There's such thing as a FeedBack Assistant🫠
Post not yet marked as solved
Oh I found out another way around my bug
my bug is that my todo list app’s done variables sometimes gets larger then my total todos when I delete one because I minus total by 1 but forgotten the done variable
Post not yet marked as solved
Restart until it works
Its annoying I even needs to connect with AppleSupport😂
deleted some preferences plist in Monterey
not sure in Ventura
Post not yet marked as solved
Try to break the file down and see. Maybe it’s just a .zip can by unzipping it all sorts of things are there
Post not yet marked as solved
Your json is not Data nor String
Post not yet marked as solved
?what do u mean?
enable or disable?
Thanks everyone I'm turning to Xcode🫠
Post not yet marked as solved
Ok I find out why
Strange openpanel issue
if anyone has any idea why, please post.
I’ll not close this thread.
Your dismiss dismisses your ContentView
another better way is to create a separate View
struct SheetView: View {
@Environment(\.dismiss) var dismiss
var body: come View {
...
Button {
dismiss()
} label: [
...
}
}
}
Then it'll work.
sth().sheet(...) {
SheetView()
}
Post not yet marked as solved
, wrong location?
you might have a different coordinate on your simulator and your actual device