Posts

Post not yet marked as solved
2 Replies
0 Views
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
5 Replies
0 Views
There's such thing as a FeedBack Assistant🫠
Post not yet marked as solved
2 Replies
0 Views
Replied In New DeveloperI
swiftUI tutorial here
Post not yet marked as solved
1 Replies
0 Views
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
3 Replies
0 Views
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
1 Replies
0 Views
Replied In iOS 16 UI
Feedback assistant
Post not yet marked as solved
1 Replies
0 Views
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
2 Replies
0 Views
Replied In Parsing JSON
Your json is not Data nor String
Post not yet marked as solved
1 Replies
0 Views
?what do u mean? enable or disable?
Post marked as solved
4 Replies
0 Views
Thanks everyone I'm turning to Xcode🫠
Post not yet marked as solved
2 Replies
0 Views
Ok I find out why Strange openpanel issue if anyone has any idea why, please post. I’ll not close this thread.
Post marked as solved
2 Replies
0 Views
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
1 Replies
0 Views
, wrong location? you might have a different coordinate on your simulator and your actual device