688,529 questions
0
votes
0
answers
21
views
iOS 26 SwiftUI app when keyboard is shown, the keyboard's toolbar covers the text input (it worked on iOS 18)
When I have a text field on bottom of a list, then tap on it to show the keyboard that has a toolbar button, on iOS 26, the keyboard's toolbar covers the text field:
However, it worked fine on iOS 18....
0
votes
0
answers
24
views
Why does cancelByProducingResumeData() return nil for upload tasks?
I'm implementing resumable uploads on iOS based on this documentation and wwdc video
The server correctly sends a 104 Upload Resumption Supported informational response, which I receive in my delegate....
-1
votes
0
answers
34
views
Unable to submit app for review in Appstoreconnect, getting Error "This build is using a beta version of Xcode and can’t be submitted."
On Apple's developer website, they list: Xcode 26.2 RC (17C48) from date December 3, 2025.
The downloaded file is called Xcode_26.2_Release_Candidate_Apple_silicon.xip
I installed this on December 7, ...
-2
votes
0
answers
24
views
Don't see Developer Options on my iPhone 17 Pro Max [duplicate]
I have an iphone 17 max pro running ios 26.1. It is connected to my Mac Pro Sequoia 15.7.2. I have XCode 26.0.1. I want xcode to see my iphone, and i want to enable developer options on my iphone, but ...
0
votes
0
answers
23
views
Are render/input callbacks guaranteed to have stopped when AUAudioUnit.stopHardware() returns?
I’m using an AUAudioUnit I/O unit for simultaneous playback + recording. While running, it invokes my:
inputHandler (called when input is available)
outputProvider (called to provide audio for ...
0
votes
0
answers
48
views
Swift iOS 26 Tab Bar how to remove bottom spacing
I am trying to remove the spacing under the iOS 26 Liquid Glass tab bar. I want the to remove it or align the Liquid Glass tab bar to bottom.
It is the yellow part under the tab items. It looks good ...
2
votes
1
answer
45
views
Rounded corner of a cut-out arc using UIBezierPath
I'm drawing a cut-out hole in CAShapeLayer using UIBezierPath, this is the code I have so far:
let view = UIView(
frame: CGRect(origin: .zero, size: CGSize(width: 500.0, height: 500.0))
)
view....
0
votes
0
answers
33
views
How to fix the size of adaptive admob banner in compose multiplatform for iOS?
Trying to integrate Adaptive AdMob for iOS part of myCcompose Multiplatform project.
I followed these materials:
A guy from Medium: https://medium.com/@diegoturchi95/admob-integration-in-compose-...
0
votes
0
answers
15
views
Pushy iOS – interruption_level Not Delivered to iOS (Time-Sensitive Notifications)
I’m trying to send time-sensitive push notifications to iOS devices using Pushy.
According to Apple’s APNs and Pushy documentation, I should send interruption-level: time-sensitive inside the aps ...
-1
votes
0
answers
24
views
UINavigationController push transition safe area bug in compact UISplitViewController on iOS 26
Having a master-detail view with a navigation stack used to be implemented by having a UISplitViewController with 2 navigation controllers.
In compact layout these 2 controllers magically "...
0
votes
0
answers
31
views
ERROR FIREBASE XCODE: Support Files/gRPC-C++/gRPC-C++-dummy.m module map file
After installing modules shown below I keep getting this error, after trying to run an app in Xcode:
firebase: 11.1.0
@react-native-firebase/app: 23.7.0
@react-native-firebase/auth: 23.7.0
@react-...
0
votes
2
answers
53
views
How to change icon (SF Symbol) color in SwiftUI TabView item
I want to change the color of the unselected/default items in TabView. It works fine for the selected tab and the text of unselected item, but it does not change the color of the unselected item icon. ...
-1
votes
0
answers
27
views
CATransaction.setCompletionBlock is not executed when inserting a cell containing a looping animation
To correct a failed server request, I'm re-inserting a row in my tableview. The cell in question has a looping animation in one of its subviews/layers, so it's my understanding that setCompletionBlock ...
1
vote
0
answers
31
views
iOS 26 adds unwanted outline to transparent Scriptable widget
I'm trying to create an "invisible" widget using Scriptable on iOS 26. The goal is for it to blend seamlessly into the home screen background.
However, iOS seems to add a subtle 1–2 pixel ...
0
votes
0
answers
21
views
MSAL .NET MAUI iOS + Azure B2C: sign-in stuck / authentication_canceled on TestFlight but works in debug
I am building a .NET MAUI mobile app that uses MSAL.NET to authenticate with Azure AD B2C.
On iOS TestFlight builds, when I call AcquireTokenInteractive(), the system browser (...