Post

Replies

Boosts

Views

Activity

Reply to Database disk image is malformed in Call Blocking
I encountered the same issue on my iPhone 15 Pro running iOS 18.4. The error message I received is: Error Domain=com.apple.callkit.database.sqlite Code=11 "sqlite3_step for query 'DELETE FROM PhoneNumberBlockingEntry WHERE extension_id = ?' returned 11 (11) errorMessage 'database disk image is malformed I have already rebooted my device, but the problem still persists. Any insights or updates would be greatly appreciated.
Topic: App & System Services SubTopic: General Tags:
Apr ’25
Reply to Issue with PasteButton and Background Gesture Conflict in SwiftUI
After various attempts, the final decision was to handle it using a workaround approach, by utilizing ZStack to place the background and PasteButton in different view stacks. var body: some View { ZStack { Color.yellow .frame(maxWidth: .greatestFiniteMagnitude, maxHeight: .greatestFiniteMagnitude) .onTapGesture { debugPrint("tap background") } VStack(spacing: 25) { Button("button") { debugPrint("tap button") } PasteButton(payloadType: String.self, onPaste: { _ in debugPrint("tap PasteButton") }) } } }
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Aug ’23