Post

Replies

Boosts

Views

Activity

iPadOS: [API] Failed to create 0x88 image slot (alpha=1 wide=0) (client=0xfbe80e61) [0x5 (os/kern) failure]
I got the error "[API] Failed to create 0x88 image slot (alpha=1 wide=0) (client=0xfbe80e61) [0x5 (os/kern) failure]" when using NavigationStack of SwiftUI for navigation. It only happen in iPadOS (16.4) but not iOS in iPhone. Below is the view I am using. struct NewView: View { var body: some View { NavigationStack { VStack { NavigationLink("Show Detail View") { DetailView() } } .navigationTitle("Navigation") } } } struct DetailView: View { var body: some View { Text("This is the detail view") } } Anyone know the reason?
3
1
2.6k
Jun ’23